commit | 43ffb67f3341bab029f437d2b7927f74e073c1fa | [log] [tgz] |
---|---|---|
author | Matteo Scandolo <matteo.scandolo@gmail.com> | Fri Dec 02 14:49:58 2016 -0800 |
committer | Matteo Scandolo <matteo.scandolo@gmail.com> | Mon Dec 05 16:02:20 2016 -0800 |
tree | 60d83f0330fc0f45bf409bce178089bbbc655ccf | |
parent | d819c92fb5005e1fd78b1d92e4ed9219588b7ddf [diff] [blame] |
Config and login Change-Id: I81ffb9b8097620cb7870beaf1b1b315945eebec0
diff --git a/src/app/interfaces/auth.interface.ts b/src/app/interfaces/auth.interface.ts new file mode 100644 index 0000000..1742fb7 --- /dev/null +++ b/src/app/interfaces/auth.interface.ts
@@ -0,0 +1,10 @@ +export interface IAuthRequest { + username: string; + password: string; +} + +export interface IAuthResponse { + xossessionid: string; + xoscsrftoken: string; + user: string; +}