6f75c8451d
* Fix subscription expiration condition * dry and add spec
32 lines
961 B
Plaintext
32 lines
961 B
Plaintext
- content_for :page_title do
|
|
= t('admin.pubsubhubbub.title')
|
|
|
|
%table.table
|
|
%thead
|
|
%tr
|
|
%th= t('admin.pubsubhubbub.topic')
|
|
%th= t('admin.pubsubhubbub.callback_url')
|
|
%th= t('admin.pubsubhubbub.confirmed')
|
|
%th= t('admin.pubsubhubbub.expires_in')
|
|
%th= t('admin.pubsubhubbub.last_delivery')
|
|
%tbody
|
|
- @subscriptions.each do |subscription|
|
|
%tr
|
|
%td
|
|
%samp= subscription.account.acct
|
|
%td
|
|
%samp= subscription.callback_url
|
|
%td
|
|
- if subscription.confirmed?
|
|
%i.fa.fa-check
|
|
%td{ style: "color: #{subscription.expired? ? 'red' : 'inherit'};" }
|
|
= precede subscription.expired? ? '-' : '' do
|
|
= time_ago_in_words(subscription.expires_at)
|
|
%td
|
|
- if subscription.last_successful_delivery_at?
|
|
= l subscription.last_successful_delivery_at
|
|
- else
|
|
%i.fa.fa-times
|
|
|
|
= paginate @subscriptions
|