Files
astuto/app/controllers/site_settings_controller.rb

17 lines
212 B
Ruby
Raw Normal View History

2022-05-01 18:00:38 +02:00
class SiteSettingsController < ApplicationController
include ApplicationHelper
before_action :authenticate_admin
def general
end
def boards
end
2022-05-01 18:00:38 +02:00
def post_statuses
end
def roadmap
end
2022-05-01 18:00:38 +02:00
end