mirror of
https://github.com/simple-login/app.git
synced 2026-04-07 19:27:34 +00:00
user can no longer extend sub with coinbase
This commit is contained in:
committed by
Adrià Casajús
parent
b23555729e
commit
fe2e1c291d
@@ -243,7 +243,6 @@ def notify_manual_sub_end():
|
||||
retries=3,
|
||||
)
|
||||
|
||||
extend_subscription_url = config.URL + "/dashboard/coinbase_checkout"
|
||||
for coinbase_subscription in CoinbaseSubscription.all():
|
||||
need_reminder = False
|
||||
if (
|
||||
@@ -275,13 +274,11 @@ def notify_manual_sub_end():
|
||||
"transactional/coinbase/reminder-subscription.txt",
|
||||
user=user,
|
||||
coinbase_subscription=coinbase_subscription,
|
||||
extend_subscription_url=extend_subscription_url,
|
||||
),
|
||||
render(
|
||||
"transactional/coinbase/reminder-subscription.html",
|
||||
user=user,
|
||||
coinbase_subscription=coinbase_subscription,
|
||||
extend_subscription_url=extend_subscription_url,
|
||||
),
|
||||
retries=3,
|
||||
)
|
||||
|
||||
@@ -11,7 +11,16 @@
|
||||
<b>{{ coinbase_subscription.end_at.format("YYYY-MM-DD") }}</b>
|
||||
{% endcall %}
|
||||
|
||||
{{ render_button("Extend your subscription", extend_subscription_url) }}
|
||||
{% call text() %}
|
||||
Due to Coinbase removing Coinbase Commerce, which SimpleLogin had been using until now,
|
||||
you can no longer extend your subscription using cryptocurrency.
|
||||
{% endcall %}
|
||||
|
||||
{% call text() %}
|
||||
Please <a href="https://app.simplelogin.io/dashboard/support">contact us</a>
|
||||
to renew your subscription.
|
||||
{% endcall %}
|
||||
|
||||
{{ render_text('Best,
|
||||
<br />
|
||||
SimpleLogin Team.') }}
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
Your subscription ends on {{ coinbase_subscription.end_at.format("YYYY-MM-DD") }}
|
||||
|
||||
You can extend your subscription on
|
||||
{{ extend_subscription_url }}
|
||||
Due to Coinbase removing Coinbase Commerce, which SimpleLogin had been using until now,
|
||||
you can no longer extend your subscription using cryptocurrency.
|
||||
|
||||
Please contact us on https://app.simplelogin.io/dashboard/support to renew your subscription.
|
||||
|
||||
Best,
|
||||
SimpleLogin team.
|
||||
|
||||
Reference in New Issue
Block a user