This commit is contained in:
burnettk 2023-02-15 22:35:55 -05:00
parent f9a7e40488
commit 608efeb565
No known key found for this signature in database

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)