This commit is contained in:
tiago.kayaya
2021-07-01 09:36:17 +01:00
parent 64b3602f49
commit d4887c1958
7 changed files with 39 additions and 21 deletions
+10 -1
View File
@@ -29,7 +29,16 @@ export class PublicationsService {
return this.http.get<any>(`${geturl}`, options);
}
PresidentialAction(id:any){
GetPresidentialAction(id:any){
const geturl = environment.apiURL + 'presidentialActions/'+id;
let options = {
headers: this.headers,
};
return this.http.get<any>(`${geturl}`, options);
}
UpdatePresidentialAction(id:any){
const geturl = environment.apiURL + 'presidentialActions/'+id;
let options = {