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
0
Merge Requests
0
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
Boxiang Sun
gitlab-ce
Commits
ba0509ed
Commit
ba0509ed
authored
Jan 25, 2019
by
Hiroyuki Sato
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make presence_of_commits_in_merge_request private method
parent
9da3ae70
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
app/models/ci/pipeline.rb
app/models/ci/pipeline.rb
+6
-6
No files found.
app/models/ci/pipeline.rb
View file @
ba0509ed
...
...
@@ -346,12 +346,6 @@ module Ci
end
end
def
presence_of_commits_in_merge_request
if
merge_request
&
.
has_no_commits?
errors
.
add
(
:merge_request
,
"must have commits"
)
end
end
def
git_author_name
strong_memoize
(
:git_author_name
)
do
commit
.
try
(
:author_name
)
...
...
@@ -757,5 +751,11 @@ module Ci
project
.
repository
.
keep_around
(
self
.
sha
,
self
.
before_sha
)
end
def
presence_of_commits_in_merge_request
if
merge_request
&
.
has_no_commits?
errors
.
add
(
:merge_request
,
"must have commits"
)
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