From: Tom Hughes Date: Wed, 14 Mar 2012 13:57:28 +0000 (+0000) Subject: Specify the username when redirecting to the OAuth client list X-Git-Tag: live~5727 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/3a1e7a67acc170731733d13172a5031ca68305e0 Specify the username when redirecting to the OAuth client list --- diff --git a/app/controllers/oauth_controller.rb b/app/controllers/oauth_controller.rb index d4d1bd888..856fdd790 100644 --- a/app/controllers/oauth_controller.rb +++ b/app/controllers/oauth_controller.rb @@ -32,7 +32,7 @@ class OauthController < ApplicationController @token.invalidate! flash[:notice] = t('oauth.revoke.flash', :application => @token.client_application.name) end - redirect_to :controller => 'oauth_clients', :action => 'index' + redirect_to oauth_clients_url(:display_name => @token.user.display_name) end protected