tokens_controller.rb 303 B

1234567891011121314
  1. # frozen_string_literal: true
  2. class Oauth::TokensController < Doorkeeper::TokensController
  3. def revoke
  4. unsubscribe_for_token if authorized? && token.accessible?
  5. super
  6. end
  7. private
  8. def unsubscribe_for_token
  9. Web::PushSubscription.where(access_token_id: token.id).delete_all
  10. end
  11. end