diff options
author | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2017-04-05 15:19:48 +0200 |
---|---|---|
committer | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2017-04-05 16:30:18 +0200 |
commit | 82dea6cffe339456c5ba0fd090464926e970dccf (patch) | |
tree | c2c48fd7f2c94eab280ff2f76719df5e1ac16fd4 /config | |
parent | 1e54181523f42c2734056b6ea548ebc2134f57a6 (diff) | |
download | gitlab-ce-82dea6cffe339456c5ba0fd090464926e970dccf.tar.gz |
Fix Rubocop offenses related to registry routes
Diffstat (limited to 'config')
-rw-r--r-- | config/routes/project.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/routes/project.rb b/config/routes/project.rb index 909a12a0204..757e1852da4 100644 --- a/config/routes/project.rb +++ b/config/routes/project.rb @@ -222,12 +222,12 @@ constraints(ProjectUrlConstrainer.new) do end resources :container_registry, only: [:index, :destroy], - controller: 'registry/repositories' + controller: 'registry/repositories' namespace :registry do resources :repository, only: [] do resources :tags, only: [:destroy], - constraints: { id: Gitlab::Regex.container_registry_reference_regex } + constraints: { id: Gitlab::Regex.container_registry_reference_regex } end end |