Skip to content

Commit e080ce4

Browse files
committed
[core] no dashboard username by default
1 parent 5dbe41d commit e080ce4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/config/DashboardConfigServiceCore.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ export class DashboardConfigServiceCore {
2020
}
2121

2222
get credentials(): [string, string] | null {
23-
const user = this.configService.get('WAHA_DASHBOARD_USERNAME', 'admin');
24-
const password = this.configService.get('WAHA_DASHBOARD_PASSWORD', 'admin');
23+
const user = this.configService.get('WAHA_DASHBOARD_USERNAME', '');
24+
const password = this.configService.get('WAHA_DASHBOARD_PASSWORD', '');
2525
if (!user && !password) {
2626
return null;
2727
}

0 commit comments

Comments
 (0)