Compare commits

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