1
0
mirror of https://github.com/funamitech/mastodon synced 2025-01-02 16:03:14 +09:00
YuruToot/app/controllers/oauth/authorizations_controller.rb

13 lines
309 B
Ruby
Raw Normal View History

class Oauth::AuthorizationsController < Doorkeeper::AuthorizationsController
2016-10-23 19:05:55 +09:00
skip_before_action :authenticate_resource_owner!
before_action :store_current_location
2016-10-23 19:05:55 +09:00
before_action :authenticate_resource_owner!
private
def store_current_location
store_location_for(:user, request.url)
end
end