diff --git a/admin/src/components/EditCreationFormular.vue b/admin/src/components/EditCreationFormular.vue index 8ea7d9578..2411e7127 100644 --- a/admin/src/components/EditCreationFormular.vue +++ b/admin/src/components/EditCreationFormular.vue @@ -45,7 +45,7 @@ - +
@@ -102,4 +102,170 @@
- \ No newline at end of file + + diff --git a/admin/src/graphql/updatePendingCreation.js b/admin/src/graphql/updatePendingCreation.js new file mode 100644 index 000000000..e9e372440 --- /dev/null +++ b/admin/src/graphql/updatePendingCreation.js @@ -0,0 +1,13 @@ +import gql from 'graphql-tag' + +export const updatePendingCreation = gql` + query ($email: String!, $amount: Int!, $note: String!, $creationDate: String!, $moderator: Int!) { + updatePendingCreation( + email: $email + amount: $amount + note: $note + creationDate: $creationDate + moderator: $moderator + ) + } +`