You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
425 B
22 lines
425 B
# 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
|
|
|