28 lines
1.0 KiB
Ruby
28 lines
1.0 KiB
Ruby
class NotificationcommentsController < ApplicationController
|
|
# default_search_scope :contestnotifications
|
|
# model_object Contestnotifications
|
|
# before_filter :authorize
|
|
|
|
def create
|
|
#raise Unauthorized unless @contestnotifications.notificationcommentable?
|
|
@contest = Contest.find(params[:contest_id])
|
|
@contestnotification = Contestnotification.find(params[:contestnotification_id])
|
|
|
|
# @notificaioncomment = Notificationcomment.new
|
|
# @notificaioncomment.safe_attributes = params[:notificationcomment]
|
|
# @notificaioncomment.author = User.current
|
|
comment = @contestnotification.notificationcomments.new(params[:notificationcomment].merge(author_id: User.current.id))
|
|
if comment.save
|
|
flash[:notice] = l(:label_comment_added)
|
|
end
|
|
|
|
redirect_to contest_contestnotification_path(@contest, @contestnotification)
|
|
end
|
|
|
|
def destroy
|
|
@contestnotifications.notificaioncomments.find(params[:notificaioncomment_id]).destroy
|
|
redirect_to contest_contestnotification_path(@contestnotifications)
|
|
end
|
|
|
|
end
|