Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
heptapod
heptapod
Commits
ae21653ba164
Commit
ae21653b
authored
Oct 17, 2017
by
Kamil Trzcinski
Browse files
Add short_revision and use total_size
parent
3214308a495f
Changes
6
Hide whitespace changes
Inline
Side-by-side
app/assets/javascripts/registry/stores/mutations.js
View file @
ae21653b
...
...
@@ -38,7 +38,7 @@
tag
:
element
.
name
,
revision
:
element
.
revision
,
shortRevision
:
element
.
short_revision
,
size
:
element
.
size
,
size
:
element
.
total_
size
,
layers
:
element
.
layers
,
location
:
element
.
location
,
createdAt
:
element
.
created_at
,
...
...
app/serializers/container_tag_entity.rb
View file @
ae21653b
class
ContainerTagEntity
<
Grape
::
Entity
include
RequestAwareEntity
expose
:name
,
:location
,
:revision
,
:total_size
,
:created_at
expose
:name
,
:location
,
:revision
,
:short_revision
,
:total_size
,
:created_at
expose
:destroy_path
,
if:
->
(
*
)
{
can_destroy?
}
do
|
tag
|
project_registry_repository_tag_path
(
project
,
tag
.
repository
,
tag
.
name
,
format: :json
)
...
...
changelogs/unreleased/kt-bug-fix-revision-and-size-for-container-registry.yml
0 → 100644
View file @
ae21653b
---
title
:
Fix revision and total size missing for Container Registry
merge_request
:
author
:
type
:
fixed
spec/fixtures/api/schemas/registry/tag.json
View file @
ae21653b
...
...
@@ -14,6 +14,11 @@
"revision"
:
{
"type"
:
"string"
},
"short_revision"
:
{
"type"
:
"string"
,
"minLength"
:
8
,
"maxLength"
:
8
},
"total_size"
:
{
"type"
:
"integer"
},
...
...
spec/javascripts/registry/mock_data.js
View file @
ae21653b
...
...
@@ -26,7 +26,7 @@
name
:
'
centos7
'
,
short_revision
:
'
b118ab5b0
'
,
revision
:
'
b118ab5b0e90b7cb5127db31d5321ac14961d097516a8e0e72084b6cdc783b43
'
,
size
:
679
,
total_
size
:
679
,
layers
:
19
,
location
:
'
location
'
,
created_at
:
1505828744434
,
...
...
@@ -36,7 +36,7 @@
name
:
'
centos6
'
,
short_revision
:
'
b118ab5b0
'
,
revision
:
'
b118ab5b0e90b7cb5127db31d5321ac14961d097516a8e0e72084b6cdc783b43
'
,
size
:
679
,
total_
size
:
679
,
layers
:
19
,
location
:
'
location
'
,
created_at
:
1505828744434
,
...
...
spec/serializers/container_tag_entity_spec.rb
View file @
ae21653b
...
...
@@ -22,7 +22,7 @@
end
it
'exposes required informations'
do
expect
(
subject
).
to
include
(
:name
,
:location
,
:revision
,
:total_size
,
:created_at
)
expect
(
subject
).
to
include
(
:name
,
:location
,
:revision
,
:short_revision
,
:total_size
,
:created_at
)
end
context
'when user can manage repositories'
do
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment