2017-04-07 06:40:26 -04: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-12-11 01:17:30 -05:00
|
|
|
before_action :set_pack
|
2017-04-07 06:40:26 -04:00
|
|
|
|
2017-04-07 20:30:50 -04:00
|
|
|
include Localized
|
|
|
|
|
2018-05-19 15:05:08 -04:00
|
|
|
def destroy
|
|
|
|
Web::PushSubscription.unsubscribe_for(params[:id], current_resource_owner)
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
2017-04-07 06:40:26 -04:00
|
|
|
private
|
|
|
|
|
|
|
|
def store_current_location
|
|
|
|
store_location_for(:user, request.url)
|
|
|
|
end
|
2017-12-11 01:17:30 -05:00
|
|
|
|
|
|
|
def set_pack
|
|
|
|
use_pack 'settings'
|
|
|
|
end
|
2017-04-07 06:40:26 -04:00
|
|
|
end
|