about summary refs log tree commit diff
path: root/app/controllers/oauth/authorizations_controller.rb
blob: f5f05814ec96da5e48c05e3398436c2a25f8d5e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
class Oauth::AuthorizationsController < Doorkeeper::AuthorizationsController
  before_action :store_current_location

  private

  def store_current_location
    store_location_for(:user, request.url)
  end
end