mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-14 15:03:17 -08:00
18 lines
315 B
Ruby
18 lines
315 B
Ruby
|
|
# frozen_string_literal: true
|
||
|
|
|
||
|
|
class Disputes::BaseController < ApplicationController
|
||
|
|
include Authorization
|
||
|
|
|
||
|
|
layout 'admin'
|
||
|
|
|
||
|
|
skip_before_action :require_functional!
|
||
|
|
|
||
|
|
before_action :set_body_classes
|
||
|
|
before_action :authenticate_user!
|
||
|
|
|
||
|
|
private
|
||
|
|
|
||
|
|
def set_body_classes
|
||
|
|
@body_classes = 'admin'
|
||
|
|
end
|
||
|
|
end
|