(id: string)
| 622 | }; |
| 623 | |
| 624 | export const banPost = (id: string): Promise<EmptyResponse> => { |
| 625 | return gqlClient.request(BAN_POST_MUTATION, { |
| 626 | id, |
| 627 | }); |
| 628 | }; |
| 629 | |
| 630 | export const promotePost = (id: string): Promise<EmptyResponse> => |
| 631 | gqlClient.request(PROMOTE_TO_PUBLIC_MUTATION, { |
no outgoing calls
no test coverage detected