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
23671d6b
Commit
23671d6b
authored
Jul 27, 2020
by
Krasimir Angelov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move EE commit status enums to FOSS
to follow recommendation from `doc/development/creating_enums.md`.
parent
65b896d3
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
20 deletions
+3
-20
app/models/commit_status_enums.rb
app/models/commit_status_enums.rb
+3
-2
ee/app/models/ee/commit_status_enums.rb
ee/app/models/ee/commit_status_enums.rb
+0
-18
No files found.
app/models/commit_status_enums.rb
View file @
23671d6b
...
...
@@ -19,13 +19,14 @@ module CommitStatusEnums
scheduler_failure:
11
,
data_integrity_failure:
12
,
forward_deployment_failure:
13
,
protected_environment_failure:
1_000
,
insufficient_bridge_permissions:
1_001
,
downstream_bridge_project_not_found:
1_002
,
invalid_bridge_trigger:
1_003
,
upstream_bridge_project_not_found:
1_004
,
insufficient_upstream_permissions:
1_005
,
bridge_pipeline_is_child_pipeline:
1_006
,
downstream_pipeline_creation_failed:
1_007
}
end
end
CommitStatusEnums
.
prepend_if_ee
(
'EE::CommitStatusEnums'
)
ee/app/models/ee/commit_status_enums.rb
deleted
100644 → 0
View file @
65b896d3
# frozen_string_literal: true
module
EE
module
CommitStatusEnums
extend
ActiveSupport
::
Concern
class_methods
do
extend
::
Gitlab
::
Utils
::
Override
override
:failure_reasons
def
failure_reasons
super
.
merge
(
protected_environment_failure:
1_000
,
upstream_bridge_project_not_found:
1_004
,
insufficient_upstream_permissions:
1_005
)
end
end
end
end
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