Skip to content
Snippets Groups Projects
Commit b1496b1d authored by Alex ORLUC's avatar Alex ORLUC
Browse files

FEAT #13670 TIME 0:10 fix url (according to custom)

parent a9a79b7c
No related branches found
No related tags found
No related merge requests found
...@@ -54,7 +54,7 @@ export class LoginComponent implements OnInit { ...@@ -54,7 +54,7 @@ export class LoginComponent implements OnInit {
onSubmit() { onSubmit() {
this.loading = true; this.loading = true;
this.http.post( this.http.post(
'../rest/authenticate', '../../rest/authenticate',
{ {
'login': this.loginForm.get('login').value, 'login': this.loginForm.get('login').value,
'password': this.loginForm.get('password').value 'password': this.loginForm.get('password').value
...@@ -82,8 +82,7 @@ export class LoginComponent implements OnInit { ...@@ -82,8 +82,7 @@ export class LoginComponent implements OnInit {
} }
getLoginInformations() { getLoginInformations() {
this.http.get( this.http.get('../../rest/authenticationInformations').pipe(
'../rest/authenticationInformations').pipe(
tap((data: any) => { tap((data: any) => {
this.applicationName = data.applicationName; this.applicationName = data.applicationName;
this.loginMessage = data.loginMessage; this.loginMessage = data.loginMessage;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment