This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-04-07 12:40:26 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Oauth::AuthorizedApplicationsController < Doorkeeper::AuthorizedApplicationsController
|
|
|
|
skip_before_action :authenticate_resource_owner!
|
|
|
|
|
|
|
|
before_action :store_current_location
|
|
|
|
before_action :authenticate_resource_owner!
|
|
|
|
|
2017-04-08 02:30:50 +02:00
|
|
|
include Localized
|
|
|
|
|
2018-05-19 21:05:08 +02:00
|
|
|
def destroy
|
|
|
|
Web::PushSubscription.unsubscribe_for(params[:id], current_resource_owner)
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
2017-04-07 12:40:26 +02:00
|
|
|
private
|
|
|
|
|
|
|
|
def store_current_location
|
|
|
|
store_location_for(:user, request.url)
|
|
|
|
end
|
|
|
|
end
|