mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 17:31:12 +01:00
22 lines
425 B
Ruby
22 lines
425 B
Ruby
# 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
|