Add peer progress visibility setting

This commit is contained in:
Tim Van Baak 2021-05-01 12:49:21 -07:00
parent bf1c160140
commit 9c2d6bb917
1 changed files with 7 additions and 4 deletions

View File

@ -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 #