mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 09:21:13 +01: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
|