Add disable_on_expiry flag for service subscriptions #618
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
closes #597
What is in this PR:
User clicks "Unsubscribe service"
-flag is set to True
-Subscription remains active
-Message shows: "Service will be unsubscribed on [date] when your paid days run out"
-Button changes to "Cancel unsubscribe"
User clicks "Cancel unsubscribe"
-flag is set to false
-Subscription continues normally
-Button changes back to "Unsubscribe service"
Subscription expires with disable_on_expiry = true:
-Subscription is deleted
-User access ends on exact paid_until date
-Action is logged
Subscription expires with disable_on_expiry = false (default, unchanged):
-Subscription goes to overdue state
-User gets reminders
User makes payment while disable_on_expiry = True
-Flag is cleared
-Paid days are aded normally
-Subscription continues - unsubscribe is cancelled
Admin panel
User profile page
-Badge shows "Will auto-unsubscribe on expiry" when flag is set
-User settings shows "Pending unsubscribe"
3 Test cases