InappropiateFlag -> Flag x.flag_as_inappropiate -> x.flag x.undo_flag_as_inappropiate -> x.unflag X.flagged_as_inappropiate -> x.flagged flag-as-inappropiate-actions views & css -> flag-actions views & css
75 lines
1.7 KiB
Ruby
75 lines
1.7 KiB
Ruby
class DebatesController < ApplicationController
|
|
before_action :authenticate_user!, except: [:index, :show]
|
|
|
|
load_and_authorize_resource
|
|
respond_to :html, :js
|
|
|
|
def index
|
|
@debates = Debate.search(params).page(params[:page]).for_render
|
|
set_debate_votes(@debates)
|
|
end
|
|
|
|
def show
|
|
set_debate_votes(@debate)
|
|
@comments = @debate.root_comments.recent.page(params[:page]).for_render
|
|
end
|
|
|
|
def new
|
|
@debate = Debate.new
|
|
load_featured_tags
|
|
end
|
|
|
|
def edit
|
|
load_featured_tags
|
|
end
|
|
|
|
def create
|
|
@debate = Debate.new(debate_params)
|
|
@debate.author = current_user
|
|
|
|
if @debate.save_with_captcha
|
|
ahoy.track :debate_created, debate_id: @debate.id
|
|
redirect_to @debate, notice: t('flash.actions.create.notice', resource_name: 'Debate')
|
|
else
|
|
load_featured_tags
|
|
render :new
|
|
end
|
|
end
|
|
|
|
def update
|
|
@debate.assign_attributes(debate_params)
|
|
if @debate.save_with_captcha
|
|
redirect_to @debate, notice: t('flash.actions.update.notice', resource_name: 'Debate')
|
|
else
|
|
load_featured_tags
|
|
render :edit
|
|
end
|
|
end
|
|
|
|
def vote
|
|
@debate.vote_by(voter: current_user, vote: params[:value])
|
|
set_debate_votes(@debate)
|
|
end
|
|
|
|
def flag
|
|
Flag.flag!(current_user, @debate)
|
|
respond_with @debate, template: 'debates/_refresh_flag_actions'
|
|
end
|
|
|
|
def unflag
|
|
Flag.unflag!(current_user, @debate)
|
|
respond_with @debate, template: 'debates/_refresh_flag_actions'
|
|
end
|
|
|
|
private
|
|
|
|
def debate_params
|
|
params.require(:debate).permit(:title, :description, :tag_list, :terms_of_service, :captcha, :captcha_key)
|
|
end
|
|
|
|
def load_featured_tags
|
|
@featured_tags = ActsAsTaggableOn::Tag.where(featured: true)
|
|
end
|
|
|
|
end
|