This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-04-07 03:40:26 -07: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!
|
2019-02-04 13:25:42 -08:00
|
|
|
before_action :set_body_classes
|
2017-04-07 03:40:26 -07:00
|
|
|
|
2017-04-07 17:30:50 -07:00
|
|
|
include Localized
|
|
|
|
|
2018-05-19 12:05:08 -07:00
|
|
|
def destroy
|
|
|
|
Web::PushSubscription.unsubscribe_for(params[:id], current_resource_owner)
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
2017-04-07 03:40:26 -07:00
|
|
|
private
|
|
|
|
|
2019-02-04 13:25:42 -08:00
|
|
|
def set_body_classes
|
|
|
|
@body_classes = 'admin'
|
|
|
|
end
|
|
|
|
|
2017-04-07 03:40:26 -07:00
|
|
|
def store_current_location
|
|
|
|
store_location_for(:user, request.url)
|
|
|
|
end
|
|
|
|
end
|