Add login capability; Add register page to routing; Block access from users that are not logged in.

This commit is contained in:
kevinpauer
2022-03-16 19:52:16 +01:00
parent 2375abbdcf
commit 2bf7f54f94
9 changed files with 100 additions and 83 deletions

View File

@@ -5,7 +5,7 @@ const API_URL = 'http://localhost:8080/api/test/';
@Injectable({
providedIn: 'root',
})
export class UserService {
export class DataService {
constructor(private http: HttpClient) {}
// getPublicContent(): Observable<any> {
// return this.http.get(API_URL + 'all', { responseType: 'text' });