agenda-libre-ruby/app/controllers/notes_controller.rb

51 lines
1.4 KiB
Ruby
Raw Normal View History

# Events, particulary during moderation, can have notes associated to them
2014-06-23 23:39:42 +02:00
class NotesController < ApplicationController
before_action :set_event, only: %i[new create]
before_action :create_note, :set_mailer_host, only: %i[create]
2014-06-23 23:39:42 +02:00
# GET /moderations/id/new
def new
@note = @moderation.notes.new
end
def create
2014-06-23 23:39:42 +02:00
respond_to do |format|
if @note.save && send_mails
2014-06-23 23:39:42 +02:00
format.html { redirect_to moderations_url, notice: t('.ok') }
format.json { render action: :show, status: :created, location: @event }
2014-06-23 23:39:42 +02:00
else
format.html { render action: :new }
2014-06-23 23:39:42 +02:00
format.json { render json: @note.errors, status: :unprocessable_entity }
end
end
end
2014-02-18 09:28:04 +01:00
private
2014-06-23 23:39:42 +02:00
# Use callbacks to share common setup or constraints between actions.
def set_event
@event = Event.find params[:moderation_id]
@moderation = @event
end
2014-02-18 09:28:04 +01:00
def create_note
@note = @moderation.notes.new note_params.merge author: current_user
end
# Never trust parameters from the scary internet, only allow the white list
# through.
def note_params
params.require(:note).permit :contents
end
def send_mails
if params[:envoiParMail] == 'oui'
# Send an update mail to its author
2015-01-10 01:00:06 +01:00
NoteMailer.notify(@note).deliver_now
@note.contents = t '.sendByMailWrap', contents: @note.contents
@note.save
2014-02-18 09:28:04 +01:00
end
2015-01-10 01:00:06 +01:00
NoteMailer.create(@note).deliver_now
end
2014-02-18 09:28:04 +01:00
end