2018-05-19 21:05:08 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Oauth::TokensController < Doorkeeper::TokensController
|
|
|
|
def revoke
|
2022-05-01 00:51:32 +02:00
|
|
|
unsubscribe_for_token if token.present? && authorized? && token.accessible?
|
|
|
|
|
2018-05-19 21:05:08 +02:00
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def unsubscribe_for_token
|
|
|
|
Web::PushSubscription.where(access_token_id: token.id).delete_all
|
|
|
|
end
|
|
|
|
end
|