Files
photoprism/pkg/http/header/webhook.go
2025-11-22 16:14:43 +01:00

13 lines
420 B
Go

package header
const (
// WebhookID is the request header containing a webhook identifier.
WebhookID string = "webhook-id"
// WebhookSignature carries the signature header.
WebhookSignature string = "webhook-signature"
// WebhookTimestamp carries the timestamp header.
WebhookTimestamp string = "webhook-timestamp"
// WebhookSecretPrefix prefixes stored webhook secrets.
WebhookSecretPrefix string = "whsec_"
)