33 lines
919 B
Ruby
33 lines
919 B
Ruby
class ProposalNotificationsController < ApplicationController
|
|
load_and_authorize_resource except: [:new]
|
|
|
|
def new
|
|
@proposal = Proposal.find(params[:proposal_id])
|
|
@notification = ProposalNotification.new(proposal_id: @proposal.id)
|
|
authorize! :new, @notification
|
|
end
|
|
|
|
def create
|
|
@notification = ProposalNotification.new(proposal_notification_params)
|
|
@proposal = Proposal.find(proposal_notification_params[:proposal_id])
|
|
if @notification.save
|
|
@proposal.voters.each do |voter|
|
|
Notification.add(voter.id, @notification)
|
|
end
|
|
redirect_to @notification, notice: I18n.t("flash.actions.create.proposal_notification")
|
|
else
|
|
render :new
|
|
end
|
|
end
|
|
|
|
def show
|
|
@notification = ProposalNotification.find(params[:id])
|
|
end
|
|
|
|
private
|
|
|
|
def proposal_notification_params
|
|
params.require(:proposal_notification).permit(:title, :body, :proposal_id)
|
|
end
|
|
|
|
end |