Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
9f76b847
Commit
9f76b847
authored
May 06, 2021
by
Nicolò Maria Mezzopera
Committed by
Mark Chao
May 06, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Packages & Registries settings: use `show` instead of `index`
parent
ba27f72f
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
6 additions
and
6 deletions
+6
-6
app/assets/javascripts/pages/groups/settings/packages_and_registries/show/index.js
...ges/groups/settings/packages_and_registries/show/index.js
+0
-0
app/assets/javascripts/pages/projects/settings/packages_and_registries/show/index.js
...s/projects/settings/packages_and_registries/show/index.js
+0
-0
app/controllers/groups/settings/packages_and_registries_controller.rb
...ers/groups/settings/packages_and_registries_controller.rb
+1
-1
app/controllers/projects/settings/packages_and_registries_controller.rb
...s/projects/settings/packages_and_registries_controller.rb
+1
-1
app/helpers/groups_helper.rb
app/helpers/groups_helper.rb
+1
-1
app/helpers/projects_helper.rb
app/helpers/projects_helper.rb
+1
-1
app/views/groups/settings/packages_and_registries/show.html.haml
...ws/groups/settings/packages_and_registries/show.html.haml
+0
-0
app/views/projects/settings/packages_and_registries/show.html.haml
.../projects/settings/packages_and_registries/show.html.haml
+0
-0
config/routes/group.rb
config/routes/group.rb
+1
-1
config/routes/project.rb
config/routes/project.rb
+1
-1
No files found.
app/assets/javascripts/pages/groups/settings/packages_and_registries/index.js
→
app/assets/javascripts/pages/groups/settings/packages_and_registries/
show/
index.js
View file @
9f76b847
File moved
app/assets/javascripts/pages/projects/settings/packages_and_registries/
index
/index.js
→
app/assets/javascripts/pages/projects/settings/packages_and_registries/
show
/index.js
View file @
9f76b847
File moved
app/controllers/groups/settings/packages_and_registries_controller.rb
View file @
9f76b847
...
...
@@ -9,7 +9,7 @@ module Groups
feature_category
:package_registry
def
index
def
show
end
private
...
...
app/controllers/projects/settings/packages_and_registries_controller.rb
View file @
9f76b847
...
...
@@ -10,7 +10,7 @@ module Projects
feature_category
:package_registry
def
index
def
show
end
private
...
...
app/helpers/groups_helper.rb
View file @
9f76b847
...
...
@@ -25,7 +25,7 @@ module GroupsHelper
applications#index
applications#show
applications#edit
packages_and_registries#
index
packages_and_registries#
show
groups/runners#show
groups/runners#edit
]
...
...
app/helpers/projects_helper.rb
View file @
9f76b847
...
...
@@ -680,7 +680,7 @@ module ProjectsHelper
operations#show
badges#index
pages#show
packages_and_registries#
index
packages_and_registries#
show
projects/runners#show
projects/runners#edit
]
...
...
app/views/groups/settings/packages_and_registries/
index
.html.haml
→
app/views/groups/settings/packages_and_registries/
show
.html.haml
View file @
9f76b847
File moved
app/views/projects/settings/packages_and_registries/
index
.html.haml
→
app/views/projects/settings/packages_and_registries/
show
.html.haml
View file @
9f76b847
File moved
config/routes/group.rb
View file @
9f76b847
...
...
@@ -52,7 +52,7 @@ constraints(::Constraints::GroupUrlConstrainer.new) do
resources
:applications
resource
s
:packages_and_registries
,
only:
[
:index
]
resource
:packages_and_registries
,
only:
[
:show
]
end
resource
:variables
,
only:
[
:show
,
:update
]
...
...
config/routes/project.rb
View file @
9f76b847
...
...
@@ -130,7 +130,7 @@ constraints(::Constraints::ProjectUrlConstrainer.new) do
end
end
resource
s
:packages_and_registries
,
only:
[
:index
]
resource
:packages_and_registries
,
only:
[
:show
]
end
resources
:autocomplete_sources
,
only:
[]
do
...
...
Write
Preview
Markdown
is supported
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