From 9c2d6bb917dacdf9bdcb8132903ad605f687edcd Mon Sep 17 00:00:00 2001 From: Tim Van Baak Date: Sat, 1 May 2021 12:49:21 -0700 Subject: [PATCH] Add peer progress visibility setting --- amanuensis/models.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/amanuensis/models.py b/amanuensis/models.py index 31dc80f..84401bb 100644 --- a/amanuensis/models.py +++ b/amanuensis/models.py @@ -170,15 +170,18 @@ class Lexicon(ModelBase): # If this is NULL, there is no limit addendum_title_limit = Column(Integer, nullable=True) - ################# - # Peer settings # - ################# + ########################## + # Collaboration settings # + ########################## # Enable the social posting feature allow_post = Column(Boolean, nullable=False, default=True) # 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 #