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
67f27a1c
Commit
67f27a1c
authored
Mar 18, 2017
by
Rydkin Maxim
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
change order of enum options in auto_cancel_pending_pipelines
parent
9bdb869a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
app/models/project.rb
app/models/project.rb
+1
-1
No files found.
app/models/project.rb
View file @
67f27a1c
...
...
@@ -256,7 +256,7 @@ class Project < ActiveRecord::Base
scope
:with_builds_enabled
,
->
{
with_feature_enabled
(
:builds
)
}
scope
:with_issues_enabled
,
->
{
with_feature_enabled
(
:issues
)
}
enum
auto_cancel_pending_pipelines:
{
enabled:
1
,
disabled:
0
}
enum
auto_cancel_pending_pipelines:
{
disabled:
0
,
enabled:
1
}
# project features may be "disabled", "internal" or "enabled". If "internal",
# they are only available to team members. This scope returns projects where
...
...
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