Files
danbooru/app/controllers/moderation_reports_controller.rb
2020-03-20 18:03:01 -05:00

29 lines
981 B
Ruby

class ModerationReportsController < ApplicationController
respond_to :html, :xml, :json, :js
def new
@moderation_report = authorize ModerationReport.new(permitted_attributes(ModerationReport))
respond_with(@moderation_report)
end
def index
@moderation_reports = authorize ModerationReport.visible(CurrentUser.user).paginated_search(params, count_pages: true)
@moderation_reports = @moderation_reports.includes(:creator, :model) if request.format.html?
respond_with(@moderation_reports)
end
def show
authorize ModerationReport
redirect_to moderation_reports_path(search: { id: params[:id] })
end
def create
@moderation_report = authorize ModerationReport.new(creator: CurrentUser.user, **permitted_attributes(ModerationReport))
@moderation_report.save
flash.now[:notice] = @moderation_report.valid? ? "Report submitted" : @moderation_report.errors.full_messages.join("; ")
respond_with(@moderation_report)
end
end