create_service.rb 215 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 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