1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 08:43:33 +00:00

Reapply "[PM-21024] Use Server for Password Change URLs (#14912)" (#16322) (#16372)

This reverts commit 0040c857ec.
This commit is contained in:
Nick Krantz
2025-09-11 08:40:11 -05:00
committed by GitHub
parent 4857855c11
commit 840e6a9ae2
16 changed files with 205 additions and 180 deletions

View File

@@ -0,0 +1,10 @@
import { BaseResponse } from "../../../models/response/base.response";
export class ChangePasswordUriResponse extends BaseResponse {
uri: string | null;
constructor(response: any) {
super(response);
this.uri = this.getResponseProperty("uri");
}
}