feat: default for is featured (#9061)

<!-- Clearly explain the need for these changes: -->
defaults is_featured to false
This commit is contained in:
Nicholas Tindle 2024-12-18 14:17:04 -06:00 committed by GitHub
parent 746f3d4e41
commit bb8a37911c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 7 deletions

View File

@ -99,7 +99,7 @@ class Profile(pydantic.BaseModel):
description: str description: str
links: list[str] links: list[str]
avatar_url: str avatar_url: str
is_featured: bool is_featured: bool = False
class StoreSubmission(pydantic.BaseModel): class StoreSubmission(pydantic.BaseModel):

View File

@ -416,13 +416,13 @@ To create a webhook-triggered block, follow these additional steps on top of the
To add support for a new webhook provider, you'll need to create a WebhooksManager that implements the `BaseWebhooksManager` interface: To add support for a new webhook provider, you'll need to create a WebhooksManager that implements the `BaseWebhooksManager` interface:
```python title="backend/integrations/webhooks/base.py" ```python title="backend/integrations/webhooks/_base.py"
--8<-- "autogpt_platform/backend/backend/integrations/webhooks/base.py:BaseWebhooksManager1" --8<-- "autogpt_platform/backend/backend/integrations/webhooks/_base.py:BaseWebhooksManager1"
--8<-- "autogpt_platform/backend/backend/integrations/webhooks/base.py:BaseWebhooksManager2" --8<-- "autogpt_platform/backend/backend/integrations/webhooks/_base.py:BaseWebhooksManager2"
--8<-- "autogpt_platform/backend/backend/integrations/webhooks/base.py:BaseWebhooksManager3" --8<-- "autogpt_platform/backend/backend/integrations/webhooks/_base.py:BaseWebhooksManager3"
--8<-- "autogpt_platform/backend/backend/integrations/webhooks/base.py:BaseWebhooksManager4" --8<-- "autogpt_platform/backend/backend/integrations/webhooks/_base.py:BaseWebhooksManager4"
--8<-- "autogpt_platform/backend/backend/integrations/webhooks/base.py:BaseWebhooksManager5" --8<-- "autogpt_platform/backend/backend/integrations/webhooks/_base.py:BaseWebhooksManager5"
``` ```
And add a reference to your `WebhooksManager` class in `WEBHOOK_MANAGERS_BY_NAME`: And add a reference to your `WebhooksManager` class in `WEBHOOK_MANAGERS_BY_NAME`: