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
iv
gitlab-ce
Commits
e5621294
Commit
e5621294
authored
Dec 29, 2011
by
Cedric Gatay
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added note when issue status changed (closed / reopened)
Implementation is correctly done through observer.
parent
78d88262
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
app/models/mailer_observer.rb
app/models/mailer_observer.rb
+7
-1
No files found.
app/models/mailer_observer.rb
View file @
e5621294
...
@@ -71,5 +71,11 @@ class MailerObserver < ActiveRecord::Observer
...
@@ -71,5 +71,11 @@ class MailerObserver < ActiveRecord::Observer
end
end
end
end
end
if
issue
.
closed_changed?
note
=
Note
.
new
(
:noteable
=>
issue
,
:project
=>
issue
.
project
)
note
.
author
=
current_user
note
.
note
=
"_Status changed to
#{
issue
.
closed
?
'closed'
:
'reopened'
}
_"
note
.
save
()
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