This repository has been archived on 2019-05-14. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon/app/controllers/admin/reports_controller.rb
2017-02-16 02:28:10 +01:00

18 lines
461 B
Ruby

# frozen_string_literal: true
class Admin::ReportsController < ApplicationController
before_action :require_admin!
layout 'admin'
def index
@reports = Report.includes(:account, :target_account).paginate(page: params[:page], per_page: 40)
@reports = params[:action_taken].present? ? @reports.resolved : @reports.unresolved
end
def show
@report = Report.find(params[:id])
@statuses = Status.where(id: @report.status_ids)
end
end