mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 07:21:13 +01:00
12 lines
216 B
Ruby
12 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
|