Last change
on this file since 8423429 was 8423429, checked in by AngelNasev <angel.nasev@…>, 17 months ago |
Add backend and frontend projects
|
-
Property mode
set to
100644
|
File size:
474 bytes
|
Line | |
---|
1 | import { Injectable } from '@angular/core';
|
---|
2 | import {HttpClient} from "@angular/common/http";
|
---|
3 | import {Observable} from "rxjs";
|
---|
4 | import {CategoryInterface} from "./categoryInterface";
|
---|
5 |
|
---|
6 | @Injectable({
|
---|
7 | providedIn: 'root'
|
---|
8 | })
|
---|
9 | export class CategoryService {
|
---|
10 |
|
---|
11 | url = "http://localhost:8080/api/categories"
|
---|
12 |
|
---|
13 | constructor(private http: HttpClient) {
|
---|
14 | }
|
---|
15 |
|
---|
16 | getAllCategories(): Observable<CategoryInterface[]> {
|
---|
17 | return this.http.get<CategoryInterface[]>(`${this.url}/all`)
|
---|
18 | }
|
---|
19 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.