src/app/services/posts.service.ts
update(id: number, post: Post) { return this.http.put<Post>(`${this.url}/${id}`, post); }