import { Injectable } from '@angular/core'; import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import { Character, CharacterCreate } from './character.model'; /** * Service HTTP pour les fiches de personnages (PJ) d'une campagne. */ @Injectable({ providedIn: 'root' }) export class CharacterService { private apiUrl = '/api/characters'; constructor(private http: HttpClient) {} getByCampaign(campaignId: string): Observable { return this.http.get(`${this.apiUrl}/campaign/${campaignId}`); } getById(id: string): Observable { return this.http.get(`${this.apiUrl}/${id}`); } create(payload: CharacterCreate): Observable { return this.http.post(this.apiUrl, payload); } update(id: string, payload: Character): Observable { return this.http.put(`${this.apiUrl}/${id}`, payload); } delete(id: string): Observable { return this.http.delete(`${this.apiUrl}/${id}`); } }