1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 01:33:33 +00:00

[SSO] Merge feature/sso into master (#139)

* [SSO] Reset Master Password (#134)

* Initial commit of reset master password (sso)

* Updated line length error

* Updated import line again

* Added trailing comma

* restored reference data for RegisterRequest

* Updated tracking boolean name // added success route update based on passed boolean

* Added new API // reverted Register // deleted reset // added change pw and sso

* Changed redirect URI to protected to override in sub-class

* Updated api to setPassword // Updated request model name // Updated change password refs // Updated formatting

* Encoded necessary parts of authorize url // Added default catch error message

* Refactored methods inside change password base component // removed unnecesary query param for sso

* [lint] Fixed error (#137)

* Cleaned lint error

* Fixed sso lint error
This commit is contained in:
Vincent Salucci
2020-08-01 08:42:24 -05:00
committed by GitHub
parent 261a20031f
commit f301b92dc3
6 changed files with 295 additions and 1 deletions

View File

@@ -0,0 +1,4 @@
export class SetPasswordRequest {
newMasterPasswordHash: string;
key: string;
}