Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | 89x 89x 89x 88x 88x 88x | import { Empty } from "google-protobuf/google/protobuf/empty_pb";
import { BlockUserReq } from "proto/blocking_pb";
import client from "./client";
export interface BlockInput {
shouldBlock: boolean;
}
export async function getBlockedUsers() {
const req = new Empty();
const response = await client.blocking.getBlockedUsers(req);
return response.toObject();
}
export async function blockUser({ username }: { username: string }) {
const req = new BlockUserReq();
req.setUsername(username);
return await client.blocking.blockUser(req);
}
export async function unblockUser({ username }: { username: string }) {
const req = new BlockUserReq();
req.setUsername(username);
return await client.blocking.unblockUser(req);
}
|