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
0c7eddf3
Commit
0c7eddf3
authored
Jan 26, 2017
by
Pedro Moreira da Silva
Committed by
Oswaldo Ferreira
Feb 08, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make approval system notes lowercase [ci-skip]
parent
9ba32fea
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
app/services/system_note_service.rb
app/services/system_note_service.rb
+3
-3
No files found.
app/services/system_note_service.rb
View file @
0c7eddf3
...
@@ -476,17 +476,17 @@ module SystemNoteService
...
@@ -476,17 +476,17 @@ module SystemNoteService
#
#
# Example Note text:
# Example Note text:
#
#
# "
A
pproved this merge request"
# "
a
pproved this merge request"
#
#
# Returns the created Note object
# Returns the created Note object
def
approve_mr
(
noteable
,
user
)
def
approve_mr
(
noteable
,
user
)
body
=
"
A
pproved this merge request"
body
=
"
a
pproved this merge request"
create_note
(
noteable:
noteable
,
project:
noteable
.
project
,
author:
user
,
note:
body
)
create_note
(
noteable:
noteable
,
project:
noteable
.
project
,
author:
user
,
note:
body
)
end
end
def
unapprove_mr
(
noteable
,
user
)
def
unapprove_mr
(
noteable
,
user
)
body
=
"
U
napproved this merge request"
body
=
"
u
napproved this merge request"
create_note
(
noteable:
noteable
,
project:
noteable
.
project
,
author:
user
,
note:
body
)
create_note
(
noteable:
noteable
,
project:
noteable
.
project
,
author:
user
,
note:
body
)
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