Suspension response

This commit is contained in:
Belen Curcio
2017-11-23 08:42:08 -03:00
parent 5793ba45c3
commit 6e6ddbf378
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ export default {
'SetUserSuspensionStatusResponse',
'SetCommentStatusResponse',
'SuspendUserResponse',
'SetUsernameStatusResponse',
'SuspendUserResponse',
'CreateCommentResponse',
'CreateFlagResponse',
'EditCommentResponse',
+3 -3
View File
@@ -160,9 +160,9 @@ export const withSetCommentStatus = withMutation(
export const withSuspendUser = withMutation(
gql`
mutation SuspendUser($input: SetUserSuspensionStatusInput!) {
setUserSuspensionStatus(input: $input) {
...SetUserSuspensionStatusResponse
mutation SuspendUser($input: SuspendUserInput!) {
suspendUser(input: $input) {
...SuspendUserResponse
}
}
`, {