Compare commits

...
2 changed files with 2 additions and 3 deletions
-3
View File
@@ -5771,9 +5771,6 @@
}
},
"responses": {
"200": {
"description": ""
},
"201": {
"description": "",
"content": {
+2
View File
@@ -91,7 +91,9 @@ export class AuthController {
@Headers('host') host: string
): Promise<AuthSignInRes> {
this.logger.info('/auth - SignIn');
this.logger.info('host: ' + host);
const metadata = PackTheMetadata({ language, host });
this.logger.info('metadata: ' + JSON.stringify(metadata.toJSON()));
return this.authClient.signIn({ username, password, totp }, metadata);
}