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.

14 lines
303 B

  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