mirror of
https://github.com/nextcloud/passman.git
synced 2025-09-08 05:54:16 +08:00
Added rudimentary ability to set folderpath in edit_credentials
Signed-off-by: fnuesse <felix.nuesse@t-online.de>
This commit is contained in:
parent
4dd94c4407
commit
b6103785b3
2 changed files with 5 additions and 0 deletions
|
@ -139,6 +139,7 @@ class TranslationController extends ApiController {
|
|||
'username' => $this->trans->t('Username'),
|
||||
'password.r' => $this->trans->t('Repeat password'),
|
||||
'add.tag' => $this->trans->t('Add tag'),
|
||||
'folderpath' => $this->trans->t('Folderpath'),
|
||||
'pick.icon' => $this->trans->t('Pick an icon'),
|
||||
'pick.icon.search' => $this->trans->t('Search icons'),
|
||||
'pick.icon.custom.label' => $this->trans->t('Upload a custom icon:'),
|
||||
|
|
|
@ -33,6 +33,10 @@
|
|||
<div>
|
||||
<textarea class="credential_textarea" ng-model="storedCredential.description"></textarea>
|
||||
</div>
|
||||
<label>{{ 'folderpath' | translate}}</label>
|
||||
<div>
|
||||
<input type="text" ng-model="storedCredential.folderpath">
|
||||
</div>
|
||||
<label>{{ 'add.tag' | translate}}</label>
|
||||
<div class="tags_input">
|
||||
<tags-input ng-model="storedCredential.tags" replace-spaces-with-dashes="false">
|
||||
|
|
Loading…
Add table
Reference in a new issue