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
fa64da65
Commit
fa64da65
authored
Mar 07, 2017
by
Shinya Maeda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use 'case/when/end'
parent
e3fd8caf
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
7 deletions
+5
-7
app/finders/pipelines_finder.rb
app/finders/pipelines_finder.rb
+5
-7
No files found.
app/finders/pipelines_finder.rb
View file @
fa64da65
...
...
@@ -88,13 +88,11 @@ class PipelinesFinder
end
def
by_yaml_errors
(
items
)
flg
=
Gitlab
::
Utils
.
to_boolean
(
params
[
:yaml_errors
])
if
!
flg
.
nil?
if
flg
case
Gitlab
::
Utils
.
to_boolean
(
params
[
:yaml_errors
])
when
true
items
.
where
(
"yaml_errors IS NOT NULL"
)
e
lse
when
fa
lse
items
.
where
(
"yaml_errors IS NULL"
)
end
else
items
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