14 lines
257 B
Ruby
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
|