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
67b349bb
Commit
67b349bb
authored
Aug 13, 2021
by
Cheryl Li
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update feature category to runner for relevant controllers
parent
d5ae78b0
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
app/controllers/admin/runner_projects_controller.rb
app/controllers/admin/runner_projects_controller.rb
+1
-1
app/controllers/projects/runner_projects_controller.rb
app/controllers/projects/runner_projects_controller.rb
+1
-1
app/controllers/runner_setup_controller.rb
app/controllers/runner_setup_controller.rb
+1
-1
No files found.
app/controllers/admin/runner_projects_controller.rb
View file @
67b349bb
...
...
@@ -3,7 +3,7 @@
class
Admin::RunnerProjectsController
<
Admin
::
ApplicationController
before_action
:project
,
only:
[
:create
]
feature_category
:
continuous_integration
feature_category
:
runner
def
create
@runner
=
Ci
::
Runner
.
find
(
params
[
:runner_project
][
:runner_id
])
...
...
app/controllers/projects/runner_projects_controller.rb
View file @
67b349bb
...
...
@@ -5,7 +5,7 @@ class Projects::RunnerProjectsController < Projects::ApplicationController
layout
'project_settings'
feature_category
:
continuous_integration
feature_category
:
runner
def
create
@runner
=
Ci
::
Runner
.
find
(
params
[
:runner_project
][
:runner_id
])
...
...
app/controllers/runner_setup_controller.rb
View file @
67b349bb
# frozen_string_literal: true
class
RunnerSetupController
<
ApplicationController
feature_category
:
continuous_integration
feature_category
:
runner
def
platforms
render
json:
Gitlab
::
Ci
::
RunnerInstructions
::
OS
.
merge
(
Gitlab
::
Ci
::
RunnerInstructions
::
OTHER_ENVIRONMENTS
)
...
...
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