瀏覽代碼

Display API key in the sidebar, just below the API key heading.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3225 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/0.9.0
Jean-Philippe Lang 14 年之前
父節點
當前提交
e26eeef837
共有 2 個檔案被更改,包括 5 行新增11 行删除
  1. 5
    0
      app/views/my/_sidebar.rhtml
  2. 0
    11
      app/views/my/account.rhtml

+ 5
- 0
app/views/my/_sidebar.rhtml 查看文件

@@ -17,6 +17,11 @@

<% if Setting.rest_api_enabled? %>
<h4><%= l(:label_api_access_key) %></h4>
<p>
<%= link_to_function(l(:button_show), "$('api-access-key').toggle();")%>
<pre id='api-access-key' class='autoscroll'><%= @user.api_key %></pre>
</p>
<%= javascript_tag("$('api-access-key').hide();") %>
<p>
<% if @user.api_token %>
<%= l(:label_api_access_key_created_on, distance_of_time_in_words(Time.now, @user.api_token.created_on)) %>

+ 0
- 11
app/views/my/account.rhtml 查看文件

@@ -52,17 +52,6 @@
<% end %>
</div>

<% if Setting.rest_api_enabled? && @user.api_token %>
<h3><%=l(:label_api_access_key) %></h3>
<div class="box">
<p>
<%= link_to_function(l(:button_show), "$('api-access-key').show();")%>
<pre id='api-access-key'><%= @user.api_key %></pre>
</p>
<%= javascript_tag("$('api-access-key').hide();") %>
</div>
<% end %>

</div>
<% end %>


Loading…
取消
儲存