Commit dda21cdee9d7aa6664b199672ec78775229f852c
1 parent
37d08956
Exists in
master
Changed the default value of privacy_mode to false
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
pybossa/model/user.py
... | ... | @@ -49,7 +49,7 @@ class User(db.Model, DomainObject, UserMixin): |
49 | 49 | passwd_hash = Column(Unicode(length=254), unique=True) |
50 | 50 | admin = Column(Boolean, default=False) |
51 | 51 | pro = Column(Boolean, default=False) |
52 | - privacy_mode = Column(Boolean, default=True, nullable=False) | |
52 | + privacy_mode = Column(Boolean, default=False, nullable=False) | |
53 | 53 | category = Column(Integer) |
54 | 54 | flags = Column(Integer) |
55 | 55 | twitter_user_id = Column(BigInteger, unique=True) | ... | ... |