14 lines
237 B
Ruby

# frozen_string_literal: true
class Settings::BaseController < ApplicationController
layout 'admin'
before_action :authenticate_user!
private
def require_not_suspended!
forbidden if current_account.unavailable?
end
end