Add peer progress visibility setting
This commit is contained in:
parent
bf1c160140
commit
9c2d6bb917
|
@ -170,15 +170,18 @@ class Lexicon(ModelBase):
|
||||||
# If this is NULL, there is no limit
|
# If this is NULL, there is no limit
|
||||||
addendum_title_limit = Column(Integer, nullable=True)
|
addendum_title_limit = Column(Integer, nullable=True)
|
||||||
|
|
||||||
#################
|
##########################
|
||||||
# Peer settings #
|
# Collaboration settings #
|
||||||
#################
|
##########################
|
||||||
|
|
||||||
# Enable the social posting feature
|
# Enable the social posting feature
|
||||||
allow_post = Column(Boolean, nullable=False, default=True)
|
allow_post = Column(Boolean, nullable=False, default=True)
|
||||||
|
|
||||||
# Show title stubs in the index when a new article is approved
|
# Show title stubs in the index when a new article is approved
|
||||||
show_stubs = Column(Boolean, nullable=False, default=False)
|
show_stubs = Column(Boolean, nullable=False, default=True)
|
||||||
|
|
||||||
|
# Show other players' progress for the current turn
|
||||||
|
show_peer_progress = Column(Boolean, nullable=False, default=True)
|
||||||
|
|
||||||
#############################
|
#############################
|
||||||
# Foreign key relationships #
|
# Foreign key relationships #
|
||||||
|
|
Loading…
Reference in New Issue