33 lines
1.3 KiB
Ruby
33 lines
1.3 KiB
Ruby
class ModerationsController < ApplicationController
|
|
after_action :verify_authorized
|
|
|
|
def index
|
|
skip_authorization
|
|
return unless current_user&.trusted
|
|
|
|
@articles = Article.published.
|
|
where("score > -5 AND score < 5").
|
|
order("published_at DESC").limit(70)
|
|
@articles = @articles.cached_tagged_with(params[:tag]) if params[:tag].present?
|
|
@articles = @articles.where("nth_published_by_author > 0 AND nth_published_by_author < 4 AND published_at > ?", 7.days.ago) if params[:state] == "new-authors"
|
|
@articles = @articles.decorate
|
|
@tag = Tag.find_by(name: params[:tag]) || not_found if params[:tag].present?
|
|
end
|
|
|
|
def article
|
|
authorize(User, :moderation_routes?)
|
|
@tag_adjustment = TagAdjustment.new
|
|
@moderatable = Article.find_by(slug: params[:slug])
|
|
@tag_moderator_tags = Tag.with_role(:tag_moderator, current_user)
|
|
@adjustments = TagAdjustment.where(article_id: @moderatable.id)
|
|
@already_adjusted_tags = @adjustments.map(&:tag_name).join(", ")
|
|
@allowed_to_adjust = @moderatable.class.name == "Article" && (current_user.has_role?(:super_admin) || @tag_moderator_tags.any?)
|
|
render template: "moderations/mod"
|
|
end
|
|
|
|
def comment
|
|
authorize(User, :moderation_routes?)
|
|
@moderatable = Comment.find(params[:id_code].to_i(26))
|
|
render template: "moderations/mod"
|
|
end
|
|
end
|