Skip to content

Commit 1999dd1

Browse files
Enable user setting chat auto scroll (#236)
* feat: Add chat auto scroll user setting * fix: Order use chat auto scroll
1 parent 5bd8e7d commit 1999dd1

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

models.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,7 @@ class User(Base):
252252
is_light_user = Column(Boolean, default=False)
253253
# shouldn't be used for validation, this is only a helper for queries, authentication still via kratos/jwt
254254
is_admin = Column(Boolean, default=False)
255+
use_chat_auto_scroll = Column(Boolean, default=True)
255256

256257

257258
class Team(Base):

0 commit comments

Comments
 (0)