1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 17:53:39 +00:00

get templates

This commit is contained in:
Kyle Spearrin
2018-05-14 16:25:14 -04:00
parent a1238ff685
commit 85770b7cbb
14 changed files with 222 additions and 6 deletions

View File

@@ -0,0 +1,17 @@
import { LoginUriRequest } from './loginUriRequest';
export class LoginRequest {
static template(): LoginRequest {
var req = new LoginRequest();
req.uris = [];
req.username = 'jdoe';
req.password = 'myp@ssword123';
req.totp = 'JBSWY3DPEHPK3PXP';
return req;
}
uris: LoginUriRequest[];
username: string;
password: string;
totp: string;
}