feat: add line about recommendation for sso command

This commit is contained in:
Eli Bosley
2025-01-23 14:36:27 -05:00
parent 29a8689ad8
commit b63720a6f2
2 changed files with 2 additions and 1 deletions

View File

@@ -8,7 +8,7 @@ export class AddSSOUserQuestionSet {
@Question({
message: `Enabling Single Sign-On (SSO) will simplify authentication by centralizing access to your Unraid server. However, this comes with certain security considerations: if your SSO account is compromised, unauthorized access to your server could occur.
Please note: your existing username and password will continue to work alongside SSO.
Please note: your existing username and password will continue to work alongside SSO. We recommend using 2FA on your Unraid.net account or a single sign-on provider to enhance security.
Are you sure you want to proceed with adding a user for SSO? (y/n)
`,

View File

@@ -20,5 +20,6 @@ export class SSOCommand extends CommandRunner {
async run(): Promise<void> {
this.logger.info('Please provide a subcommand or use --help for more information');
process.exit(0);
}
}