You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
565 B

  1. - content_for :page_title do
  2. Apps
  3. %p= link_to 'Add new', new_oauth_application_path, class: 'btn btn-success'
  4. %table.table
  5. %thead
  6. %tr
  7. %th App
  8. %th Callback URL
  9. %th
  10. %th
  11. %tbody
  12. - @applications.each do |application|
  13. %tr
  14. %td= link_to application.name, oauth_application_path(application)
  15. %td= application.redirect_uri
  16. %td= link_to 'Edit', edit_oauth_application_path(application)
  17. %td= link_to 'Delete', oauth_application_path(application), method: :delete, data: { confirm: 'Are you sure?' }