fix: my profile activity endpoint (#1983)

* fix: my profile activity endpoint

* chore: update service name
This commit is contained in:
Aaryan Khandelwal 2023-08-28 13:29:48 +05:30 committed by GitHub
parent 6e7701d854
commit 485e56bcdf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 15 deletions

View file

@ -101,8 +101,8 @@ class UserService extends APIService {
});
}
async getUserActivity(): Promise<IUserActivityResponse> {
return this.get("/api/users/activities/")
async getUserWorkspaceActivity(workspaceSlug: string): Promise<IUserActivityResponse> {
return this.get(`/api/users/workspaces/${workspaceSlug}/activities/`)
.then((response) => response?.data)
.catch((error) => {
throw error?.response?.data;