mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-24 06:58:06 +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
|