Files
gitlabhq/app/services/notes/update_service.rb
T
2015-07-31 14:29:18 +02:00

14 lines
242 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.reset_events_cache
note
end
end
end