mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-12 00:34:13 +01:00
13 lines
420 B
Go
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_"
|
|
)
|