31 lines
790 B
Ruby
31 lines
790 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Notes
|
|
class UpdateService < BaseService
|
|
def execute(note)
|
|
return note unless note.editable?
|
|
|
|
old_mentioned_users = note.mentioned_users.to_a
|
|
|
|
note.update(params.merge(updated_by: current_user))
|
|
note.create_new_cross_references!(current_user)
|
|
|
|
if note.previous_changes.include?('note')
|
|
TodoService.new.update_note(note, current_user, old_mentioned_users)
|
|
end
|
|
|
|
if note.supports_suggestion?
|
|
Suggestion.transaction do
|
|
note.suggestions.delete_all
|
|
Suggestions::CreateService.new(note).execute
|
|
end
|
|
|
|
# We need to refresh the previous suggestions call cache
|
|
# in order to get the new records.
|
|
note.reload
|
|
end
|
|
|
|
note
|
|
end
|
|
end
|
|
end
|