audit-logs: implement enum sources that should be re-used.

This commit is contained in:
Marcin Kuzminski 2017-06-14 11:51:46 +02:00
parent c36f3f7abd
commit dbcc488137
3 changed files with 9 additions and 3 deletions

View file

@ -1181,7 +1181,8 @@ def delete_repo(request, apiuser, repoid, forks=Optional('')):
audit_logger.store(
action='repo.delete',
action_data={'repo_data': repo_data, 'source': 'api_call'},
action_data={'repo_data': repo_data,
'source': audit_logger.SOURCE_API},
user=apiuser, repo=repo, commit=False)
ScmModel().mark_for_invalidation(repo_name, delete=True)