51 lines
1.3 KiB
Ruby
51 lines
1.3 KiB
Ruby
module Moderator
|
|
module Post
|
|
class PostsController < ApplicationController
|
|
before_filter :janitor_only, :only => [:delete, :undelete, :ban, :unban, :confirm_delete, :confirm_ban]
|
|
before_filter :admin_only, :only => [:expunge]
|
|
rescue_from ::PostFlag::Error, :with => :rescue_exception
|
|
|
|
def confirm_delete
|
|
@post = ::Post.find(params[:id])
|
|
end
|
|
|
|
def delete
|
|
@post = ::Post.find(params[:id])
|
|
if params[:commit] == "Delete"
|
|
@post.flag!(params[:reason])
|
|
@post.delete!(:reason => params[:reason], :move_favorites => params[:move_favorites].present?)
|
|
end
|
|
redirect_to(post_path(@post))
|
|
end
|
|
|
|
def undelete
|
|
@post = ::Post.find(params[:id])
|
|
@post.undelete!
|
|
end
|
|
|
|
def expunge
|
|
@post = ::Post.find(params[:id])
|
|
@post.expunge!
|
|
end
|
|
|
|
def confirm_ban
|
|
@post = ::Post.find(params[:id])
|
|
end
|
|
|
|
def ban
|
|
@post = ::Post.find(params[:id])
|
|
if params[:commit] == "Ban"
|
|
@post.ban!
|
|
end
|
|
redirect_to(post_path(@post), :notice => "Post was banned")
|
|
end
|
|
|
|
def unban
|
|
@post = ::Post.find(params[:id])
|
|
@post.unban!
|
|
redirect_to(post_path(@post), :notice => "Post was unbanned")
|
|
end
|
|
end
|
|
end
|
|
end
|