kopia lustrzana https://github.com/bugout-dev/moonstream
Add fixes.
rodzic
134b785c9e
commit
b9d9584bfe
|
@ -76,8 +76,8 @@ def create_subscription_type(
|
|||
id: str,
|
||||
name: str,
|
||||
description: str,
|
||||
choices: Optional[List[str]],
|
||||
icon_url: str,
|
||||
choices: Optional[List[str]] = [],
|
||||
stripe_product_id: Optional[str] = None,
|
||||
stripe_price_id: Optional[str] = None,
|
||||
active: bool = False,
|
||||
|
|
|
@ -12,7 +12,7 @@ class SubscriptionTypeResourceData(BaseModel):
|
|||
id: str
|
||||
name: str
|
||||
description: str
|
||||
choices: Optional[List[str]]
|
||||
choices: List[str] = Field(default_factory=list)
|
||||
icon_url: str
|
||||
stripe_product_id: Optional[str] = None
|
||||
stripe_price_id: Optional[str] = None
|
||||
|
|
|
@ -19,7 +19,6 @@ from ..stream_queries import StreamQuery
|
|||
|
||||
logger = logging.getLogger(__name__)
|
||||
logger.setLevel(logging.WARN)
|
||||
allowed_tags = ["nfts"]
|
||||
|
||||
|
||||
class BugoutEventProviderError(Exception):
|
||||
|
|
Ładowanie…
Reference in New Issue