Fix missing scheme in API url
This commit is contained in:
		@@ -7,7 +7,7 @@ import { User } from '../models/user';
 | 
				
			|||||||
    providedIn: 'root',
 | 
					    providedIn: 'root',
 | 
				
			||||||
})
 | 
					})
 | 
				
			||||||
export class UserService {
 | 
					export class UserService {
 | 
				
			||||||
    private url = 'localhost:59772/api';
 | 
					    private url = 'http://localhost:8080/api';
 | 
				
			||||||
    constructor(private http: HttpClient) {}
 | 
					    constructor(private http: HttpClient) {}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    getUserList(): Observable<Array<User>> {
 | 
					    getUserList(): Observable<Array<User>> {
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user