mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-01 20:45:56 +00:00
8378b72eba
* Ensure push subscription is immediately removed when application is revoked * When token is revoked from app, unsubscribe too
15 lines
303 B
Ruby
15 lines
303 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Oauth::TokensController < Doorkeeper::TokensController
|
|
def revoke
|
|
unsubscribe_for_token if authorized? && token.accessible?
|
|
super
|
|
end
|
|
|
|
private
|
|
|
|
def unsubscribe_for_token
|
|
Web::PushSubscription.where(access_token_id: token.id).delete_all
|
|
end
|
|
end
|