This commit is contained in:
einhornimmond 2024-07-09 16:35:37 +02:00
parent 54c1bd4cdc
commit bd038b0f59
3 changed files with 1 additions and 6 deletions

View File

@ -144,7 +144,7 @@ export default {
validTo: null,
cycle: 'ONCE',
maxPerCycle: 1,
maxAmountPerMonth: '0',
// maxAmountPerMonth: '0',
},
min: new Date(),
cycle: [

View File

@ -9,7 +9,6 @@ export const createContributionLink = gql`
$memo: String!
$cycle: String!
$maxPerCycle: Int! = 1
$maxAmountPerMonth: Decimal
) {
createContributionLink(
validFrom: $validFrom
@ -19,7 +18,6 @@ export const createContributionLink = gql`
memo: $memo
cycle: $cycle
maxPerCycle: $maxPerCycle
maxAmountPerMonth: $maxAmountPerMonth
) {
link
}

View File

@ -8,7 +8,6 @@ export const updateContributionLink = gql`
$cycle: String!
$validFrom: String
$validTo: String
$maxAmountPerMonth: Decimal
$maxPerCycle: Int! = 1
$id: Int!
) {
@ -19,7 +18,6 @@ export const updateContributionLink = gql`
cycle: $cycle
validFrom: $validFrom
validTo: $validTo
maxAmountPerMonth: $maxAmountPerMonth
maxPerCycle: $maxPerCycle
id: $id
) {
@ -32,7 +30,6 @@ export const updateContributionLink = gql`
createdAt
validFrom
validTo
maxAmountPerMonth
cycle
maxPerCycle
}