Log the pushed tag and add IP address display

Fixes #798
This commit is contained in:
Joseph Schorr 2016-04-20 13:00:21 -04:00
parent feabfa38ff
commit 03489c22ad
3 changed files with 13 additions and 2 deletions

View file

@ -45,7 +45,13 @@ angular.module('quay').directive('logsView', function () {
'create_robot': 'Create Robot Account: {robot}',
'delete_robot': 'Delete Robot Account: {robot}',
'create_repo': 'Create Repository: {repo}',
'push_repo': 'Push to repository: {repo}',
'push_repo': function(metadata) {
if (metadata.tag) {
return 'Push of {tag}';
} else {
return 'Repository push';
}
},
'repo_verb': function(metadata) {
var prefix = '';
if (metadata.verb == 'squash') {