You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trustieforge/app/controllers/notificationcomments_contro...

36 lines
1.0 KiB

class NotificationcommentsController < ApplicationController
default_search_scope :contestnotifications
model_object Contestnotifications
before_filter :find_model_object
before_filter :find_contest_from_association
before_filter :authorize
def create
raise Unauthorized unless @contestnotifications.notificationcommentable?
@notificaioncomment = Notificaioncomment.new
@notificaioncomment.safe_attributes = params[:notificaioncomment]
@notificaioncomment.author = User.current
if @contestnotifications.notificaioncomments << @notificaioncomment
flash[:notice] = l(:label_comment_added)
end
redirect_to contest_contestnotification_path(@contestnotifications)
end
def destroy
@contestnotifications.notificaioncomments.find(params[:notificaioncomment_id]).destroy
redirect_to contest_contestnotification_path(@contestnotifications)
end
private
def find_model_object
super
@contestnotifications = @object
@notificaioncomment = nil
@contestnotifications
end
end