mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-12 14:03:16 -08:00
11 lines
193 B
Ruby
11 lines
193 B
Ruby
|
|
# frozen_string_literal: true
|
||
|
|
|
||
|
|
class Settings::BaseController < ApplicationController
|
||
|
|
before_action :set_body_classes
|
||
|
|
|
||
|
|
private
|
||
|
|
|
||
|
|
def set_body_classes
|
||
|
|
@body_classes = 'admin'
|
||
|
|
end
|
||
|
|
end
|