Files
danbooru/app/controllers/reports_controller.rb
2015-08-07 17:23:39 -07:00

14 lines
257 B
Ruby

class ReportsController < ApplicationController
def user_promotions
@report = Reports::UserPromotions.new
end
def janitor_trials
@report = Reports::JanitorTrials.new
end
def contributors
@report = Reports::Contributors.new
end
end