diff --git a/app/views/my/_sidebar.rhtml b/app/views/my/_sidebar.rhtml index ee3c8abd..0a95acfe 100644 --- a/app/views/my/_sidebar.rhtml +++ b/app/views/my/_sidebar.rhtml @@ -17,6 +17,11 @@ <% if Setting.rest_api_enabled? %>
+ <%= link_to_function(l(:button_show), "$('api-access-key').toggle();")%> +
<%= @user.api_key %>+ +<%= javascript_tag("$('api-access-key').hide();") %>
<% if @user.api_token %> <%= l(:label_api_access_key_created_on, distance_of_time_in_words(Time.now, @user.api_token.created_on)) %> diff --git a/app/views/my/account.rhtml b/app/views/my/account.rhtml index a3136f4c..9bf45b33 100644 --- a/app/views/my/account.rhtml +++ b/app/views/my/account.rhtml @@ -52,17 +52,6 @@ <% end %> -<% if Setting.rest_api_enabled? && @user.api_token %> -
- <%= link_to_function(l(:button_show), "$('api-access-key').show();")%> -
<%= @user.api_key %>- - <%= javascript_tag("$('api-access-key').hide();") %> -