mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 04:54:18 +00:00
aggiunta generic exception
This commit is contained in:
parent
6c1f907d78
commit
4f7640d0b5
1 changed files with 2 additions and 0 deletions
|
@ -82,6 +82,8 @@ def page_repositories():
|
|||
evaluation_mode = ConditionMode(request.json['evaluation_mode'])
|
||||
except KeyError:
|
||||
return json_error("Unknown `type` specified.", GENERIC_ENUM_INVALID), 400
|
||||
except Exception as e:
|
||||
return json_error("Unknown error: " + str(e)), 400
|
||||
repository = Repository(name=name, owner_id=user.email, is_active=False, evaluation_mode=evaluation_mode)
|
||||
ext.session.add(repository)
|
||||
ext.session.commit()
|
||||
|
|
Loading…
Reference in a new issue