Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_delete_form.html.haml « authorized_applications « doorkeeper « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d73d171798e9fc9a98379b7a61f6f73ebac28136 (plain)
1
2
3
4
5
6
7
8
- if defined?(token)
  - path = oauth_authorized_application_path(0, token_id: token)
- else
  - path = oauth_authorized_application_path(application)

= form_tag path do
  %input{ :name => "_method", :type => "hidden", :value => "delete" }/
  = submit_tag _('Revoke'), class: 'gl-button btn btn-danger btn-sm', data: { confirm: _('Are you sure?') }