You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 26, 2024. It is now read-only.
getAllActivities() method
getActivities(){
this.activityService.getAllActivity().subscribe((data: Activity[] )=>{
this.activities = data;
console.log(this.activities);
});
} CMS cervice class /getAllactivity method
getAllActivity():Observable<Activity[]>{
return this.http.get<Activity[]>(this.activityUrl);
} this is delete method which is in CMS service
deleteActivity(activityId: string):Observable{
let httpHeaders = new HttpHeaders().set('Content-type','application/json');
let options={
headers:httpHeaders
};
return this.http.delete(this.activityUrl+"/"+activityId);
} Service Class Activity.ts