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

12 lines
215 B
Ruby

module Notes
class CreateService < BaseService
def execute
note = project.notes.new(params[:note])
note.author = current_user
note.system = false
note.save
note
end
end
end