diff options
author | Matt Jankowski <mjankowski@thoughtbot.com> | 2017-04-28 09:12:37 -0400 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-04-28 15:12:37 +0200 |
commit | 9566893cc973671f151ceabf266d260ebba57492 (patch) | |
tree | 1f575905b552ba758a08300b96c91122e3ef6dc4 /app/views/admin | |
parent | 0e2589867f2a54fe9a71c20560d90d7f77c12bd3 (diff) |
More controller specs (#2561)
* Add render_views in more places * Delegate methods from account to user with allow nil true, so that admin accounts show view renders when missing a user * Use actual account instances in authorize follow controller spec
Diffstat (limited to 'app/views/admin')
-rw-r--r-- | app/views/admin/accounts/show.html.haml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app/views/admin/accounts/show.html.haml b/app/views/admin/accounts/show.html.haml index 898f43c0b..0b3348960 100644 --- a/app/views/admin/accounts/show.html.haml +++ b/app/views/admin/accounts/show.html.haml @@ -16,15 +16,15 @@ - if @account.local? %tr %th= t('admin.accounts.email') - %td= @account.user.email + %td= @account.user_email %tr %th= t('admin.accounts.most_recent_ip') - %td= @account.user.current_sign_in_ip + %td= @account.user_current_sign_in_ip %tr %th= t('admin.accounts.most_recent_activity') %td - - if @account.user.current_sign_in_at - = l @account.user.current_sign_in_at + - if @account.user_current_sign_in_at + = l @account.user_current_sign_in_at - else Never - else @@ -78,7 +78,7 @@ = link_to t('admin.accounts.silence'), admin_account_silence_path(@account.id), method: :post, class: 'button' - if @account.local? - - unless @account.user.confirmed? + - unless @account.user_confirmed? = link_to t('admin.accounts.confirm'), admin_account_confirmation_path(@account.id), method: :post, class: 'button' - if @account.suspended? |