mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 03:37:56 +01:00
18 lines
287 B
Ruby
18 lines
287 B
Ruby
class ModerationController < ApplicationController
|
|
include ApplicationHelper
|
|
|
|
before_action :authenticate_moderator
|
|
before_action :set_page_title
|
|
|
|
def feedback
|
|
end
|
|
|
|
def users
|
|
end
|
|
|
|
private
|
|
|
|
def set_page_title
|
|
@page_title = t('header.menu.moderation')
|
|
end
|
|
end |