mirror of
https://github.com/SecurityBrewery/catalyst.git
synced 2025-12-10 17:23:05 +01:00
Add simple auth (#186)
This commit is contained in:
@@ -2186,12 +2186,24 @@ export interface User {
|
||||
* @memberof User
|
||||
*/
|
||||
'roles': Array<string>;
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof User
|
||||
*/
|
||||
'salt'?: string;
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof User
|
||||
*/
|
||||
'sha256'?: string;
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof User
|
||||
*/
|
||||
'sha512'?: string;
|
||||
}
|
||||
/**
|
||||
*
|
||||
@@ -2285,6 +2297,12 @@ export interface UserForm {
|
||||
* @memberof UserForm
|
||||
*/
|
||||
'id': string;
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof UserForm
|
||||
*/
|
||||
'password'?: string;
|
||||
/**
|
||||
*
|
||||
* @type {Array<string>}
|
||||
|
||||
Reference in New Issue
Block a user