about summary refs log blame commit diff
path: root/app/controllers/concerns/authorization.rb
blob: 95a37e379e80eef831497ab4d77ba8953bcb6720 (plain) (tree)
1
2
3
4
5


                               
 
















                                         
# frozen_string_literal: true

module Authorization
  extend ActiveSupport::Concern

  include Pundit

  def pundit_user
    current_account
  end

  def authorize(*)
    super
  rescue Pundit::NotAuthorizedError
    raise Mastodon::NotPermittedError
  end

  def authorize_with(user, record, query)
    Pundit.authorize(user, record, query)
  rescue Pundit::NotAuthorizedError
    raise Mastodon::NotPermittedError
  end
end