Updating the store mutations

This commit is contained in:
okbel
2017-12-20 20:00:34 -03:00
parent 60e890c244
commit 73666399b4
2 changed files with 3 additions and 2 deletions
@@ -10,6 +10,7 @@ export default {
'SetUserSuspensionStatusResponse',
'SetCommentStatusResponse',
'SetUsernameStatusResponse',
'UnSuspendUserResponse',
'SuspendUserResponse',
'CreateCommentResponse',
'CreateFlagResponse',
+2 -2
View File
@@ -179,9 +179,9 @@ export const withSuspendUser = withMutation(
export const withUnSuspendUser = withMutation(
gql`
mutation UnSuspendUser($input: SuspendUserInput!) {
mutation UnSuspendUser($input: UnSuspendUserInput!) {
unSuspendUser(input: $input) {
...SuspendUserResponse
...UnSuspendUserResponse
}
}
`, {