Implement user-specific tutorial retrieval and enhance authentication details

This commit is contained in:
liosha84
2025-07-06 14:04:19 +03:00
parent 83c1917651
commit f7b2b189b3
12 changed files with 143 additions and 6 deletions
@@ -17,6 +17,8 @@ export class TutorialService {
return this.http.get<Tutorial[]>(baseUrl);
}
get(id: any): Observable<Tutorial> {
return this.http.get(`${baseUrl}/${id}`);
}