feat: watch space (#2096)
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
import api from "@/lib/api-client";
|
||||
|
||||
export async function watchSpace(
|
||||
spaceId: string,
|
||||
): Promise<{ watching: boolean }> {
|
||||
const req = await api.post<{ watching: boolean }>("/spaces/watch", {
|
||||
spaceId,
|
||||
});
|
||||
return req.data;
|
||||
}
|
||||
|
||||
export async function unwatchSpace(
|
||||
spaceId: string,
|
||||
): Promise<{ watching: boolean }> {
|
||||
const req = await api.post<{ watching: boolean }>("/spaces/unwatch", {
|
||||
spaceId,
|
||||
});
|
||||
return req.data;
|
||||
}
|
||||
|
||||
export async function getSpaceWatchStatus(
|
||||
spaceId: string,
|
||||
): Promise<{ watching: boolean }> {
|
||||
const req = await api.post<{ watching: boolean }>("/spaces/watch-status", {
|
||||
spaceId,
|
||||
});
|
||||
return req.data;
|
||||
}
|
||||
Reference in New Issue
Block a user