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
dfe3e580
Commit
dfe3e580
authored
Dec 07, 2021
by
Sincheol (David) Kim
Committed by
Bob Van Landuyt
Dec 07, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Set 'High' Custom Error Budget Thresholds
parent
3bb0b5ab
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
1 deletion
+9
-1
app/controllers/groups_controller.rb
app/controllers/groups_controller.rb
+2
-0
app/controllers/projects/merge_requests_controller.rb
app/controllers/projects/merge_requests_controller.rb
+2
-0
app/controllers/projects_controller.rb
app/controllers/projects_controller.rb
+2
-0
ee/app/controllers/ee/projects/merge_requests_controller.rb
ee/app/controllers/ee/projects/merge_requests_controller.rb
+2
-0
lib/api/merge_requests.rb
lib/api/merge_requests.rb
+1
-1
No files found.
app/controllers/groups_controller.rb
View file @
dfe3e580
...
...
@@ -59,6 +59,8 @@ class GroupsController < Groups::ApplicationController
feature_category
:projects
,
[
:projects
]
feature_category
:importers
,
[
:export
,
:download_export
]
urgency
:high
,
[
:unfoldered_environment_names
]
def
index
redirect_to
(
current_user
?
dashboard_groups_path
:
explore_groups_path
)
end
...
...
app/controllers/projects/merge_requests_controller.rb
View file @
dfe3e580
...
...
@@ -79,6 +79,8 @@ class Projects::MergeRequestsController < Projects::MergeRequests::ApplicationCo
feature_category
:infrastructure_as_code
,
[
:terraform_reports
]
feature_category
:continuous_integration
,
[
:pipeline_status
,
:pipelines
,
:exposed_artifacts
]
urgency
:high
,
[
:export_csv
]
def
index
@merge_requests
=
@issuables
...
...
app/controllers/projects_controller.rb
View file @
dfe3e580
...
...
@@ -51,7 +51,9 @@ class ProjectsController < Projects::ApplicationController
feature_category
:team_planning
,
[
:preview_markdown
,
:new_issuable_address
]
feature_category
:importers
,
[
:export
,
:remove_export
,
:generate_new_export
,
:download_export
]
feature_category
:code_review
,
[
:unfoldered_environment_names
]
urgency
:low
,
[
:refs
]
urgency
:high
,
[
:unfoldered_environment_names
]
def
index
redirect_to
(
current_user
?
root_path
:
explore_root_path
)
...
...
ee/app/controllers/ee/projects/merge_requests_controller.rb
View file @
dfe3e580
...
...
@@ -31,6 +31,8 @@ module EE
feature_category
:metrics
,
[
:metrics_reports
]
feature_category
:license_compliance
,
[
:license_scanning_reports
]
feature_category
:code_review
,
[
:delete_description_version
,
:description_diff
]
urgency
:high
,
[
:delete_description_version
]
end
def
can_run_sast_experiments_on?
(
project
)
...
...
lib/api/merge_requests.rb
View file @
dfe3e580
...
...
@@ -303,7 +303,7 @@ module API
desc
'Get the context commits of a merge request'
do
success
Entities
::
Commit
end
get
':id/merge_requests/:merge_request_iid/context_commits'
,
feature_category: :code_review
do
get
':id/merge_requests/:merge_request_iid/context_commits'
,
feature_category: :code_review
,
urgency: :high
do
merge_request
=
find_merge_request_with_access
(
params
[
:merge_request_iid
])
project
=
merge_request
.
project
...
...
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