This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-05-29 09:22:22 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Authorization
|
|
|
|
extend ActiveSupport::Concern
|
2017-11-11 11:23:33 -08:00
|
|
|
|
2017-05-29 09:22:22 -07:00
|
|
|
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
|