Browse Source

Update context_models.py

Bastien Sevajol 6 years ago
parent
commit
f3de6f3ecc
No account linked to committer's email
1 changed files with 1 additions and 1 deletions
  1. 1 1
      backend/tracim_backend/models/context_models.py

+ 1 - 1
backend/tracim_backend/models/context_models.py View File

495
         # list should be able to change (depending on activated/disabled
495
         # list should be able to change (depending on activated/disabled
496
         # apps)
496
         # apps)
497
         app_api = ApplicationApi(
497
         app_api = ApplicationApi(
498
-            APP_LIST
498
+            APP_LIST,
499
         )
499
         )
500
         return app_api.get_default_workspace_menu_entry(self.workspace)
500
         return app_api.get_default_workspace_menu_entry(self.workspace)
501
 
501