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
35a77675
Commit
35a77675
authored
Jan 19, 2016
by
Rubén Dávila
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update Issue/MR everytime a Note is saved/destroyed.
parent
08c482b8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
5 deletions
+2
-5
app/models/note.rb
app/models/note.rb
+1
-1
app/services/notes/create_service.rb
app/services/notes/create_service.rb
+1
-4
No files found.
app/models/note.rb
View file @
35a77675
...
...
@@ -33,7 +33,7 @@ class Note < ActiveRecord::Base
participant
:author
belongs_to
:project
belongs_to
:noteable
,
polymorphic:
true
belongs_to
:noteable
,
polymorphic:
true
,
touch:
true
belongs_to
:author
,
class_name:
"User"
belongs_to
:updated_by
,
class_name:
"User"
...
...
app/services/notes/create_service.rb
View file @
35a77675
...
...
@@ -10,10 +10,7 @@ module Notes
# Skip system notes, like status changes and cross-references and awards
unless
note
.
system
||
note
.
is_award
event
=
event_service
.
leave_note
(
note
,
note
.
author
)
noteable
=
note
.
noteable
noteable
.
touch
if
event
.
commented?
&&
noteable
.
respond_to?
(
:touch
)
event_service
.
leave_note
(
note
,
note
.
author
)
note
.
create_cross_references!
execute_hooks
(
note
)
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