Add simple admin overview of PuSH subscriptions
This commit is contained in:
parent
7e5e33df48
commit
27fc49d745
9 changed files with 97 additions and 0 deletions
20
app/views/admin/pubsubhubbub/index.html.haml
Normal file
20
app/views/admin/pubsubhubbub/index.html.haml
Normal file
|
@ -0,0 +1,20 @@
|
|||
%table.table
|
||||
%thead
|
||||
%tr
|
||||
%th Topic
|
||||
%th Callback URL
|
||||
%th Confirmed
|
||||
%th Expires in
|
||||
%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= distance_of_time_in_words(Time.now, subscription.expires_at)
|
||||
|
||||
= will_paginate @subscriptions, pagination_options
|
Loading…
Add table
Add a link
Reference in a new issue