gitlab-org--gitlab-foss/app/services/notes/update_service.rb
Douglas Barbosa Alexandre 3d52e139b1 Rename Tasks to Todos
2016-02-20 12:39:27 -02:00

17 lines
410 B
Ruby

module Notes
class UpdateService < BaseService
def execute(note)
return note unless note.editable?
note.update_attributes(params.merge(updated_by: current_user))
note.create_new_cross_references!(current_user)
note.reset_events_cache
if note.previous_changes.include?('note')
TodoService.new.update_note(note, current_user)
end
note
end
end
end