mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-02-23 02:53:48 -05:00
12 lines
212 B
Ruby
12 lines
212 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class Disputes::BaseController < ApplicationController
|
||
|
include Authorization
|
||
|
|
||
|
layout 'admin'
|
||
|
|
||
|
skip_before_action :require_functional!
|
||
|
|
||
|
before_action :authenticate_user!
|
||
|
end
|