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