2017-05-29 12:22:22 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Authorization
|
|
|
|
extend ActiveSupport::Concern
|
2017-11-11 14:23:33 -05:00
|
|
|
|
2017-05-29 12:22:22 -04: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
|