Skip to content

Commit b2e4d2d

Browse files
committed
feat: add chat background setting to application settings
1 parent fe008e0 commit b2e4d2d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

apps/chat/serializers/chat_authentication.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,8 @@ def profile(self, with_valid=True):
125125
'custom_theme': application_setting.custom_theme,
126126
'user_avatar': application_setting.user_avatar,
127127
'show_user_avatar': application_setting.show_user_avatar,
128-
'float_location': application_setting.float_location}
128+
'float_location': application_setting.float_location,
129+
'chat_background': application_setting.chat_background}
129130
base_node = [node for node in ((application.work_flow or {}).get('nodes', []) or []) if
130131
node.get('id') == 'base-node']
131132
return {**ApplicationSerializerModel(application).data,

0 commit comments

Comments
 (0)