tokens_controller.rb 322 B

123456789101112131415
  1. # frozen_string_literal: true
  2. class Oauth::TokensController < Doorkeeper::TokensController
  3. def revoke
  4. unsubscribe_for_token if token.present? && 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