First stab at time machine using fixed two week expiration policy.

This commit is contained in:
Jake Moshenko 2015-02-11 11:54:30 -05:00
parent 0f3d87466e
commit 90c0a9c1e0
6 changed files with 78 additions and 43 deletions

View file

@ -54,8 +54,8 @@ class RepositoryTag(RepositoryParamResource):
username = get_authenticated_user().username
log_action('move_tag' if original_image_id else 'create_tag', namespace,
{ 'username': username, 'repo': repository, 'tag': tag,
'image': image_id, 'original_image': original_image_id },
{'username': username, 'repo': repository, 'tag': tag,
'image': image_id, 'original_image': original_image_id},
repo=model.get_repository(namespace, repository))
return 'Updated', 201