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

12 lines
215 B
Ruby
Raw Normal View History

2012-07-31 05:32:49 +00:00
module Notes
class CreateService < BaseService
2012-07-31 05:32:49 +00:00
def execute
note = project.notes.new(params[:note])
note.author = current_user
note.system = false
2012-07-31 05:32:49 +00:00
note.save
note
end
end
end