Skip to content

Commit

Permalink
Fix membership value
Browse files Browse the repository at this point in the history
  • Loading branch information
nikdoof committed Nov 11, 2023
1 parent 8ddf4c6 commit 09d38ac
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions hackspaceapi/spaceapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,11 +216,11 @@ async def space_json():
"links": get_links(),
"issue_report_channels": ["email"],
"membership_plans": [
{'name': 'Member', 'value': '25', 'currency': 'GBP', 'billing_interval': 'monthly'},
{'name': 'Member+', 'value': '30', 'currency': 'GBP', 'billing_interval': 'monthly'},
{'name': 'Concession', 'value': '18', 'currency': 'GBP', 'billing_interval': 'monthly'},
{'name': 'Family', 'value': '40', 'currency': 'GBP', 'billing_interval': 'monthly'},
{'name': 'Day Pass', 'value': '5', 'currency': 'GBP', 'billing_interval': 'daily'},
{'name': 'Member', 'value': 25, 'currency': 'GBP', 'billing_interval': 'monthly'},
{'name': 'Member+', 'value': 30, 'currency': 'GBP', 'billing_interval': 'monthly'},
{'name': 'Concession', 'value': 18, 'currency': 'GBP', 'billing_interval': 'monthly'},
{'name': 'Family', 'value': 40, 'currency': 'GBP', 'billing_interval': 'monthly'},
{'name': 'Day Pass', 'value': 5, 'currency': 'GBP', 'billing_interval': 'daily'},
]
}

Expand Down

0 comments on commit 09d38ac

Please sign in to comment.