(id: string)
| 628 | }; |
| 629 | |
| 630 | export const banPost = (id: string): Promise<EmptyResponse> => { |
| 631 | return gqlClient.request(BAN_POST_MUTATION, { |
| 632 | id, |
| 633 | }); |
| 634 | }; |
| 635 | |
| 636 | export const promotePost = (id: string): Promise<EmptyResponse> => |
| 637 | gqlClient.request(PROMOTE_TO_PUBLIC_MUTATION, { |
no outgoing calls
no test coverage detected