Add subscription manager — tier-based feature gating#66
Open
Add subscription manager — tier-based feature gating#66
Conversation
Tier system (FREE/BASIC/PRO/ADMIN) with MongoDB storage, @require_tier decorator for handler gating, admin commands (/set_tier, /list_subscribers), /my_tier for users, i18n strings (en/ru), and full core wiring. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- Remove unused import (ruff F401) - Split setup_dispatcher into two methods to stay under CCN 20 - Add comprehensive test suite for subscription_manager component Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
subscription_managercomponent withTierenum (FREE/BASIC/PRO/ADMIN) and MongoDB storage@require_tier("pro")decorator to gate any handler behind a minimum tierget_user_tier(),set_user_tier(),check_tier()/set_tier <user_id> <tier>,/list_subscribers/my_tierReplaces #21 (closed) — scoped down from payment-screenshot verification to pure tier/feature gating.
Test plan
BOTSPOT_SUBSCRIPTION_MANAGER_ENABLED=true/my_tierreturns default tier (free)/set_tier <user_id> pro@require_tier("pro")blocks free users and allows pro users🤖 Generated with Claude Code