Skip to content

fix: [BOUNTY] Webhook Event System#627

Open
pabloDarkmoon24 wants to merge 4 commits intorohitdash08:mainfrom
pabloDarkmoon24:fix/issue-77-remotehunter
Open

fix: [BOUNTY] Webhook Event System#627
pabloDarkmoon24 wants to merge 4 commits intorohitdash08:mainfrom
pabloDarkmoon24:fix/issue-77-remotehunter

Conversation

@pabloDarkmoon24
Copy link

Fixes #77

{
  "solution_code": "### File: app/webhooks/__init__.py\n```python\n# app/webhooks/__init__.py\n```\n\n### File: app/webhooks/models.py\n```python\n# app/webhooks/models.py\nfrom datetime import datetime\nfrom app.db.base import db\n\n\nclass WebhookEndpoint(db.Model):\n    __tablename__ = \"webhook_endpoints\"\n\n    id = db.Column(db.Integer, primary_key=True)\n    user_id = db.Column(db.Integer, db.ForeignKey(\"users.id\", ondelete=\"CASCADE\"), nullable=False)\n    url = db.Column(d

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Webhook Event System

1 participant