diff options
author | Jean Praloran <jeanpralo@gmail.com> | 2017-03-17 16:40:57 +1300 |
---|---|---|
committer | Jean Praloran <jeanpralo@gmail.com> | 2017-05-30 07:11:28 +1200 |
commit | d890c6e81b696a5c02fe8138a76a4d113ee8ba93 (patch) | |
tree | a358383852900f6fc0b04abdaec66ae1fec5d15a /app/services/auth | |
parent | 6c9da292418c606aefe34aab40923d5730ae9aa5 (diff) | |
download | gitlab-ce-d890c6e81b696a5c02fe8138a76a4d113ee8ba93.tar.gz |
fix typo and check
Diffstat (limited to 'app/services/auth')
-rw-r--r-- | app/services/auth/container_registry_authentication_service.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/auth/container_registry_authentication_service.rb b/app/services/auth/container_registry_authentication_service.rb index 335cfdbc231..9622ce64d9f 100644 --- a/app/services/auth/container_registry_authentication_service.rb +++ b/app/services/auth/container_registry_authentication_service.rb @@ -122,7 +122,7 @@ module Auth (requested_project == project || can?(current_user, :build_read_container_image, requested_project)) end - def user_can_delete(requested_project) + def user_can_delete?(requested_project) has_authentication_ability?(:admin_container_image) && can?(current_user, :admin_container_image, requested_project) end |