diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2019-02-26 19:43:59 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2019-02-28 17:38:48 +0100 |
commit | 4b724751307447cb5153ce4708d6ad9d04a6bff5 (patch) | |
tree | da0e43b8a3e198c3451522ab544a202c3cff4ccc /settings/js/templates/authtoken.handlebars | |
parent | fb48abc35ab9d36c6d9eef5fa0ac1fe92bba0f73 (diff) | |
download | nextcloud-server-4b724751307447cb5153ce4708d6ad9d04a6bff5.tar.gz nextcloud-server-4b724751307447cb5153ce4708d6ad9d04a6bff5.zip |
Move personal auth token settings to Vue
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Always crate OC.Settings, even if not used
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'settings/js/templates/authtoken.handlebars')
-rw-r--r-- | settings/js/templates/authtoken.handlebars | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/settings/js/templates/authtoken.handlebars b/settings/js/templates/authtoken.handlebars deleted file mode 100644 index 37dc31f04c6..00000000000 --- a/settings/js/templates/authtoken.handlebars +++ /dev/null @@ -1,34 +0,0 @@ -<tr data-id="{{id}}"> - <td class="client"> - <div class="{{icon}}" /> - </td> - <td class="token-name"> - <span>{{name}}</span> - {{#if canRename}} - <input class="hidden" type="text" value="{{name}}" /> - {{/if}} - </td> - <td> - <span class="last-activity has-tooltip" title="{{lastActivityTime}}">{{lastActivity}}</span></td> - <td class="more"> - {{#if showMore}}<a class="icon icon-more has-tooltip" tabindex="0" title="{{settingsTitle}}"/>{{/if}} - <div class="popovermenu menu"> - {{#if canScope}} - <li><span class="menuitem"> - <input class="filesystem checkbox" type="checkbox" id="{{id}}_filesystem" {{#if scope.filesystem}}checked{{/if}} tabindex="0" /> - <label for="{{id}}_filesystem">{{allowFSAccess}}</label><br/> - </span></li> - {{/if}} - {{#if canRename}} - <li> - <a class="icon icon-rename" tabindex="0">{{renameText}}</a> - </li> - {{/if}} - {{#if canDelete}} - <li> - <a class="icon icon-delete" tabindex="0">{{revokeText}}</a> - </li> - {{/if}} - </div> - </td> -</tr> |