diff options
author | Phil Hughes <me@iamphill.com> | 2016-03-01 15:08:17 +0000 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2016-03-04 09:06:07 +0000 |
commit | be390cff65de0bf6f0fc1f059c4243fcb85d43d0 (patch) | |
tree | cb57ed6fbce46c0840a20bda2683c5d98419294f /app/controllers | |
parent | c2377a11957c6e5f8514ff0d68b2af343d3427d0 (diff) | |
download | gitlab-ce-be390cff65de0bf6f0fc1f059c4243fcb85d43d0.tar.gz |
Fixed Ruby style error
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/oauth/applications_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/oauth/applications_controller.rb b/app/controllers/oauth/applications_controller.rb index d983ae0b8c6..e20446b2cce 100644 --- a/app/controllers/oauth/applications_controller.rb +++ b/app/controllers/oauth/applications_controller.rb @@ -24,7 +24,7 @@ class Oauth::ApplicationsController < Doorkeeper::ApplicationsController flash[:notice] = I18n.t(:notice, scope: [:doorkeeper, :flash, :applications, :create]) redirect_to oauth_application_url(@application) else - redirect_to applications_profile_url, flash: {application: @application} + redirect_to applications_profile_url, flash: { application: @application } end end |