This commit is contained in:
burnettk 2023-02-15 22:35:55 -05:00
parent 909060e985
commit 3cfd81efa6
1 changed files with 2 additions and 1 deletions

View File

@ -26,6 +26,7 @@ def user_group_list_for_current_user() -> flask.wrappers.Response:
group_identifiers = [
i.identifier
for i in groups
if i.identifier != current_app.config["SPIFFWORKFLOW_BACKEND_DEFAULT_USER_GROUP"]
if i.identifier
!= current_app.config["SPIFFWORKFLOW_BACKEND_DEFAULT_USER_GROUP"]
]
return make_response(jsonify(sorted(group_identifiers)), 200)