From 39739bc05edfb52dab52d74d0d2718980ce13db8 Mon Sep 17 00:00:00 2001 From: oyurov Date: Thu, 15 Sep 2022 09:38:00 +0200 Subject: [PATCH] Refactor method name to make it more clear --- ui-ngx/src/app/modules/login/pages/login/login.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui-ngx/src/app/modules/login/pages/login/login.component.ts b/ui-ngx/src/app/modules/login/pages/login/login.component.ts index 407aa01ad6..e889969e4d 100644 --- a/ui-ngx/src/app/modules/login/pages/login/login.component.ts +++ b/ui-ngx/src/app/modules/login/pages/login/login.component.ts @@ -69,7 +69,7 @@ export class LoginComponent extends PageComponent implements OnInit { } } - addPrevUriIfExists(oauth2Client: OAuth2ClientInfo): string { + getOAuth2Uri(oauth2Client: OAuth2ClientInfo): string { let result = ""; if (this.authService.redirectUrl) { result += "?prevUri=" + this.authService.redirectUrl;