mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 13:38:49 +08:00
39 lines
991 B
Ruby
39 lines
991 B
Ruby
require 'flag_query'
|
|
|
|
class Admin::FlagsController < Admin::AdminController
|
|
def index
|
|
# we may get out of sync, fix it here
|
|
PostAction.update_flagged_posts_count
|
|
posts, users = FlagQuery.flagged_posts_report(current_user, params[:filter], params[:offset].to_i, 10)
|
|
|
|
if posts.blank?
|
|
render json: {users: [], posts: []}
|
|
else
|
|
render json: MultiJson.dump({users: serialize_data(users, AdminDetailedUserSerializer), posts: posts})
|
|
end
|
|
end
|
|
|
|
def disagree
|
|
p = Post.find(params[:id])
|
|
PostAction.clear_flags!(p, current_user.id)
|
|
p.reload
|
|
p.unhide!
|
|
render nothing: true
|
|
end
|
|
|
|
def agree
|
|
p = Post.find(params[:id])
|
|
post_action_type = PostAction.post_action_type_for_post(p.id)
|
|
PostAction.defer_flags!(p, current_user.id)
|
|
PostAction.hide_post!(p, post_action_type)
|
|
render nothing: true
|
|
end
|
|
|
|
def defer
|
|
p = Post.find(params[:id])
|
|
PostAction.defer_flags!(p, current_user.id)
|
|
render nothing: true
|
|
end
|
|
|
|
end
|