Use a current_user helper for accessing the logged in user in all views.
This commit is contained in:
parent
41000078b9
commit
c819bec8b7
31 changed files with 99 additions and 97 deletions
|
@ -2,7 +2,7 @@
|
|||
<h1><%= t "oauth.oauthorize.title" %></h1>
|
||||
<% end %>
|
||||
|
||||
<p><%= raw t("oauth.oauthorize.request_access", :app_name => link_to(@token.client_application.name, @token.client_application.url), :user => link_to(@user.display_name, :controller => :user, :action => :view, :display_name => @user.display_name)) %></p>
|
||||
<p><%= raw t("oauth.oauthorize.request_access", :app_name => link_to(@token.client_application.name, @token.client_application.url), :user => link_to(current_user.display_name, :controller => :user, :action => :view, :display_name => current_user.display_name)) %></p>
|
||||
|
||||
<%= form_tag authorize_url do %>
|
||||
<%= hidden_field_tag "oauth_token", @token.token %>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue