webhook_repo

package
v0.0.21 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 6, 2025 License: MIT Imports: 9 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type WebhookRepository

type WebhookRepository struct {
	// contains filtered or unexported fields
}

WebhookRepository handles webhook database operations

func NewWebhookRepository

func NewWebhookRepository(db *ent.Client) *WebhookRepository

NewWebhookRepository creates a new repository

func (*WebhookRepository) Create

func (*WebhookRepository) Delete

func (self *WebhookRepository) Delete(ctx context.Context, id uuid.UUID) error

func (*WebhookRepository) GetByID

func (self *WebhookRepository) GetByID(ctx context.Context, id uuid.UUID) (*ent.Webhook, error)

func (*WebhookRepository) GetByProject

func (self *WebhookRepository) GetByProject(ctx context.Context, projectID uuid.UUID) ([]*ent.Webhook, error)

func (*WebhookRepository) GetByTeam

func (self *WebhookRepository) GetByTeam(ctx context.Context, teamID uuid.UUID) ([]*ent.Webhook, error)

func (*WebhookRepository) GetWebhooksForEvent

func (self *WebhookRepository) GetWebhooksForEvent(ctx context.Context, event schema.WebhookEvent) ([]*ent.Webhook, error)

func (*WebhookRepository) Update

type WebhookRepositoryInterface

type WebhookRepositoryInterface interface {
	Create(ctx context.Context, input *models.WebhookCreateInput) (*ent.Webhook, error)
	Update(ctx context.Context, input *models.WebhookUpdateInput) (*ent.Webhook, error)
	Delete(ctx context.Context, id uuid.UUID) error
	GetByID(ctx context.Context, id uuid.UUID) (*ent.Webhook, error)
	GetByTeam(ctx context.Context, teamID uuid.UUID) ([]*ent.Webhook, error)
	GetByProject(ctx context.Context, projectID uuid.UUID) ([]*ent.Webhook, error)
	GetWebhooksForEvent(ctx context.Context, event schema.WebhookEvent) ([]*ent.Webhook, error)
}

WebhookRepositoryInterface ...

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL