mirror of
https://github.com/mastodon/mastodon.git
synced 2025-02-06 15:05:07 +00: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
|