All files / app/service blocking.ts

40% Statements 6/15
100% Branches 0/0
0% Functions 0/3
40% Lines 6/15

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 3180x 80x   80x           79x               79x             79x            
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);
}