feat: storing my issue view display properties (#1124)
This commit is contained in:
parent
f095594be9
commit
def391cb76
4 changed files with 98 additions and 106 deletions
|
|
@ -142,6 +142,14 @@ class WorkspaceService extends APIService {
|
|||
});
|
||||
}
|
||||
|
||||
async updateWorkspaceView(workspaceSlug: string, data: any): Promise<any> {
|
||||
return this.post(`/api/workspaces/${workspaceSlug}/workspace-views/`, data)
|
||||
.then((response) => response?.data)
|
||||
.catch((error) => {
|
||||
throw error?.response?.data;
|
||||
});
|
||||
}
|
||||
|
||||
async updateWorkspaceMember(
|
||||
workspaceSlug: string,
|
||||
memberId: string,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue