gitlab-org--gitlab-foss/app/services/notes/update_service.rb

14 lines
295 B
Ruby
Raw Normal View History

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)
2015-07-31 12:29:18 +00:00
note.reset_events_cache
note
end
end
end