1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-20 01:23:50 -05:00

18 lines
308 B
Ruby
Raw Normal View History

2017-11-20 22:13:37 -08:00
# frozen_string_literal: true
class Settings::BaseController < ApplicationController
layout 'admin'
before_action :authenticate_user!
before_action :set_pack
before_action :set_body_classes
2017-11-20 22:13:37 -08:00
def set_pack
use_pack 'settings'
end
def set_body_classes
@body_classes = 'admin'
end
2017-11-20 22:13:37 -08:00
end