mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-01 20:45:56 +00:00
13 lines
216 B
Ruby
13 lines
216 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Settings::BaseController < ApplicationController
|
|
layout 'admin'
|
|
|
|
before_action :authenticate_user!
|
|
before_action :set_pack
|
|
|
|
def set_pack
|
|
use_pack 'settings'
|
|
end
|
|
end
|