Fixes bug with the user level select dropdown on the mod dashboard page missing the builder level.
11 lines
260 B
Ruby
11 lines
260 B
Ruby
module Moderator
|
|
class DashboardsController < ApplicationController
|
|
before_action :member_only
|
|
helper :post_flags, :post_appeals
|
|
|
|
def show
|
|
@dashboard = Moderator::Dashboard::Report.new(**search_params.to_h.symbolize_keys)
|
|
end
|
|
end
|
|
end
|