mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-02-20 17:43:50 -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
|