(id: string)
| 659 | }; |
| 660 | |
| 661 | export const banPost = (id: string): Promise<EmptyResponse> => { |
| 662 | return gqlClient.request(BAN_POST_MUTATION, { |
| 663 | id, |
| 664 | }); |
| 665 | }; |
| 666 | |
| 667 | export const promotePost = (id: string): Promise<EmptyResponse> => |
| 668 | gqlClient.request(PROMOTE_TO_PUBLIC_MUTATION, { |
no outgoing calls
no test coverage detected