Skip to content

Commit

Permalink
include dummy values for Schulportal in config-files
Browse files Browse the repository at this point in the history
  • Loading branch information
DPDS93CT committed Oct 10, 2023
1 parent be0e30d commit 121cce3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion config/config.dev.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
"BASE_URL": "http://127.0.0.1:8080",
"REALM_NAME": "schulportal",
"CLIENT_ID": "schulportal",
"USERNAME": "dummy"
"USERNAME": "dummy",
"PASSWORD": "dummy",
"SECRET": "dummy"
}
}
4 changes: 3 additions & 1 deletion config/config.test.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
"BASE_URL": "http://127.0.0.1:8080",
"REALM_NAME": "schulportal",
"CLIENT_ID": "schulportal",
"USERNAME": "dummy"
"USERNAME": "dummy",
"PASSWORD": "dummy",
"SECRET": "dummy"
}
}
2 changes: 1 addition & 1 deletion src/modules/ui-backend/api/login.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { NewLoginService } from '../domain/new-login.service.js';
import { DomainError } from '../../../shared/error/index.js';

@ApiTags('api/login')
@Controller({ path: 'login'})
@Controller({ path: 'login' })
export class LoginController {
public constructor(private loginService: LoginService, private someService: NewLoginService) {}

Expand Down

0 comments on commit 121cce3

Please sign in to comment.