Commit fd26a173 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets Committed by mfluharty

Fix dependency proxy invalid method name

Signed-off-by: default avatarDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
parent 26a5f60f
...@@ -7,7 +7,7 @@ module Groups ...@@ -7,7 +7,7 @@ module Groups
def show def show
@blobs_count = group.dependency_proxy_blobs.count @blobs_count = group.dependency_proxy_blobs.count
@blobs_total_size = group.dependency_proxy_blobs.size_sum @blobs_total_size = group.dependency_proxy_blobs.total_size
end end
def update def update
......
...@@ -4,4 +4,4 @@ ...@@ -4,4 +4,4 @@
= text_field_tag :url, "#{group_url(@group)}/dependency_proxy/containers", class: 'js-dependency-proxy-url form-control', readonly: true = text_field_tag :url, "#{group_url(@group)}/dependency_proxy/containers", class: 'js-dependency-proxy-url form-control', readonly: true
.help-block.prepend-top-5 .help-block.prepend-top-5
Contains #{@blobs_count} blobs of images (#{number_to_human_size(@blobs_total_size)}) Contains #{@blobs_count} blobs of images (#{number_to_human_size(@blobs_total_size)})
\ No newline at end of file
...@@ -75,4 +75,4 @@ describe 'Group Dependency Proxy' do ...@@ -75,4 +75,4 @@ describe 'Group Dependency Proxy' do
end end
end end
end end
end end
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment