2014-09-02 11:12:13 -04:00
|
|
|
module Notes
|
|
|
|
class UpdateService < BaseService
|
2015-07-30 08:45:54 -04:00
|
|
|
def execute(note)
|
|
|
|
return note unless note.editable?
|
2014-09-02 11:12:13 -04:00
|
|
|
|
2015-07-30 08:45:54 -04:00
|
|
|
note.update_attributes(params.merge(updated_by: current_user))
|
2015-10-28 08:09:51 -04:00
|
|
|
note.create_new_cross_references!(current_user)
|
2014-09-02 11:12:13 -04:00
|
|
|
|
2016-02-16 17:21:24 -05:00
|
|
|
if note.previous_changes.include?('note')
|
2016-02-20 08:59:59 -05:00
|
|
|
TodoService.new.update_note(note, current_user)
|
2016-02-16 17:21:24 -05:00
|
|
|
end
|
|
|
|
|
2014-09-02 11:12:13 -04:00
|
|
|
note
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|