Do not store last visited URL from API controllers (#1330)

Sign-in redirects you back to last visited URL, but in case of API requests,
this sometimes redirected users to an API URL that, of course, greeted them
with an {"error":"The access token is invalid"}
This commit is contained in:
Eugen 2017-04-09 22:21:52 +02:00 committed by GitHub
parent c172919745
commit 93db265be7
1 changed files with 1 additions and 0 deletions

View File

@ -7,6 +7,7 @@ class ApiController < ApplicationController
protect_from_forgery with: :null_session
skip_before_action :verify_authenticity_token
skip_before_action :store_current_location
before_action :set_rate_limit_headers