refactor: update imports and type definitions in services
Some checks failed
CI / Get Changed Files (pull_request) Successful in 7s
CI / eslint (pull_request) Successful in 26s
CI / test-build (pull_request) Successful in 31s
CI / prettier (pull_request) Failing after 54s
CI / Checkstyle Main (pull_request) Successful in 1m57s

This commit is contained in:
Jan K9f 2025-04-02 16:20:37 +02:00
commit e37dcecd3f
Signed by: jank
GPG key ID: B9F475106B20F144
4 changed files with 12 additions and 10 deletions

View file

@ -158,8 +158,8 @@ export class AuthService {
}
}
private processUserProfile(profile: Record<string, unknown>) {
this.fromUserProfile(profile).subscribe({
private processUserProfile(profile: unknown) {
this.fromUserProfile(profile as Record<string, unknown>).subscribe({
next: (user) => {
console.log('User created/retrieved from backend:', user);
this.user = user;
@ -225,7 +225,7 @@ export class AuthService {
return this.oauthService.hasValidAccessToken();
}
private fromUserProfile(profile: object) {
private fromUserProfile(profile: Record<string, unknown>) {
return this.userService.getOrCreateUser(profile);
}