admin cleanup
This commit is contained in:
parent
0a49cfd866
commit
6e4844629a
4 changed files with 6 additions and 4 deletions
|
|
@ -7,6 +7,7 @@
|
||||||
%li= link_to 'Pod Stats', pod_stats_path
|
%li= link_to 'Pod Stats', pod_stats_path
|
||||||
%li= link_to 'Correlations', correlations_path
|
%li= link_to 'Correlations', correlations_path
|
||||||
- if AppConfig[:mount_resque_web]
|
- if AppConfig[:mount_resque_web]
|
||||||
|
%li= link_to 'Resque', '/admins/resque'
|
||||||
%li= link_to 'Resque Overview', resque_web_path
|
%li= link_to 'Resque Overview', resque_web_path
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
email:
|
email:
|
||||||
= text_field_tag 'user[email]', params[:user][:email]
|
= text_field_tag 'user[email]', params[:user][:email]
|
||||||
|
|
||||||
invitation identifier
|
invitation identifier:
|
||||||
= text_field_tag 'user[invitation_identifier]', params[:user][:invitation_identifier]
|
= text_field_tag 'user[invitation_identifier]', params[:user][:invitation_identifier]
|
||||||
|
|
||||||
invitation token:
|
invitation token:
|
||||||
|
|
|
||||||
|
|
@ -5,9 +5,9 @@
|
||||||
%br
|
%br
|
||||||
|
|
||||||
.span-24.last
|
.span-24.last
|
||||||
%h1
|
%h2
|
||||||
= "Users per week (Current server date is: #{Time.now.to_date}) "
|
= "Users per week (Current server date is: #{Time.now.to_date}) "
|
||||||
%ul
|
%ul
|
||||||
- @created_users_by_week.keys.sort.each do |k|
|
- @created_users_by_week.keys.sort.reverse.each do |k|
|
||||||
%li
|
%li
|
||||||
= "Week stating on #{k} , #{@created_users_by_week[k]}"
|
= "Week starting on #{k} , #{@created_users_by_week[k]}"
|
||||||
|
|
|
||||||
|
|
@ -110,6 +110,7 @@ Diaspora::Application.routes.draw do
|
||||||
get :admin_inviter
|
get :admin_inviter
|
||||||
get :weekly_user_stats
|
get :weekly_user_stats
|
||||||
get :correlations
|
get :correlations
|
||||||
|
get :resque
|
||||||
get :stats, :as => 'pod_stats'
|
get :stats, :as => 'pod_stats'
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue