diff options
author | Ansh <anshnanda10@gmail.com> | 2023-04-21 16:55:29 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-21 18:55:29 -0500 |
commit | 38eb299011672fc840849ae51e67adefef882bec (patch) | |
tree | 71c23c9818e48ecb898b99a3413e09aa3ba7c008 /src/state/models/ui/shell.ts | |
parent | aa56f4a5e2c4236b7ae74ab61e75e419a86ed83d (diff) | |
download | voidsky-38eb299011672fc840849ae51e67adefef882bec.tar.zst |
[APP-522] Create & revoke App Passwords within settings (#505)
* create and delete app passwords * add randomly generated name * Tweak copy and layout of app passwords * Improve app passwords on desktop web * Rearrange settings * Change app-passwords route and add to backend * Fix link * Fix some more desktop web * Remove log --------- Co-authored-by: Paul Frazee <pfrazee@gmail.com>
Diffstat (limited to 'src/state/models/ui/shell.ts')
-rw-r--r-- | src/state/models/ui/shell.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/state/models/ui/shell.ts b/src/state/models/ui/shell.ts index b717fe05c..6c58262d8 100644 --- a/src/state/models/ui/shell.ts +++ b/src/state/models/ui/shell.ts @@ -70,6 +70,10 @@ export interface InviteCodesModal { name: 'invite-codes' } +export interface AddAppPasswordModal { + name: 'add-app-password' +} + export interface ContentFilteringSettingsModal { name: 'content-filtering-settings' } @@ -79,6 +83,7 @@ export type Modal = | ChangeHandleModal | DeleteAccountModal | EditProfileModal + | AddAppPasswordModal // Curation | ContentFilteringSettingsModal |