Commit f17fe7ff authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

correct indentation in activity observer

parent 7bab81b1
...@@ -21,22 +21,22 @@ class ActivityObserver < ActiveRecord::Observer ...@@ -21,22 +21,22 @@ class ActivityObserver < ActiveRecord::Observer
end end
def after_close(record, transition) def after_close(record, transition)
Event.create( Event.create(
project: record.project, project: record.project,
target_id: record.id, target_id: record.id,
target_type: record.class.name, target_type: record.class.name,
action: Event::CLOSED, action: Event::CLOSED,
author_id: record.author_id_of_changes author_id: record.author_id_of_changes
) )
end end
def after_reopen(record, transition) def after_reopen(record, transition)
Event.create( Event.create(
project: record.project, project: record.project,
target_id: record.id, target_id: record.id,
target_type: record.class.name, target_type: record.class.name,
action: Event::REOPENED, action: Event::REOPENED,
author_id: record.author_id_of_changes author_id: record.author_id_of_changes
) )
end end
end end
class NoteObserver < ActiveRecord::Observer class NoteObserver < ActiveRecord::Observer
def after_create(note) def after_create(note)
send_notify_mails(note) send_notify_mails(note)
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment