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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
4dc09e5c
Commit
4dc09e5c
authored
Mar 20, 2014
by
Marin Jankovski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New bindings to vote on notes.
parent
5f595be4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
app/models/note.rb
app/models/note.rb
+4
-2
No files found.
app/models/note.rb
View file @
4dc09e5c
...
...
@@ -199,7 +199,8 @@ class Note < ActiveRecord::Base
def
downvote?
votable?
&&
(
note
.
start_with?
(
'-1'
)
||
note
.
start_with?
(
':-1:'
)
||
note
.
start_with?
(
':thumbsdown:'
)
note
.
start_with?
(
':thumbsdown:'
)
||
note
.
start_with?
(
':thumbs_down_sign:'
)
)
end
...
...
@@ -249,7 +250,8 @@ class Note < ActiveRecord::Base
def
upvote?
votable?
&&
(
note
.
start_with?
(
'+1'
)
||
note
.
start_with?
(
':+1:'
)
||
note
.
start_with?
(
':thumbsup:'
)
note
.
start_with?
(
':thumbsup:'
)
||
note
.
start_with?
(
':thumbs_up_sign:'
)
)
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