feat: webhooker 1.0 MVP — entity rename, core engine, delivery, management UI #16

Merged
sneak merged 33 commits from feature/mvp-1.0 into main 2026-03-04 01:19:41 +01:00
3 changed files with 3 additions and 3 deletions
Showing only changes of commit 8e00e40008 - Show all commits

View File

@@ -71,7 +71,7 @@ On first startup, webhooker automatically generates a cryptographically
secure session encryption key and stores it in the database. This key secure session encryption key and stores it in the database. This key
persists across restarts — no manual key management is needed. persists across restarts — no manual key management is needed.
On first startup in development mode, webhooker creates an `admin` user On first startup, webhooker creates an `admin` user
with a randomly generated password and logs it to stdout. This password with a randomly generated password and logs it to stdout. This password
is only displayed once. is only displayed once.

View File

@@ -90,7 +90,7 @@ type Notifier interface {
Notify(tasks []DeliveryTask) Notify(tasks []DeliveryTask)
} }
// HTTPTargetConfig holds configuration for http and retry target types. // HTTPTargetConfig holds configuration for http target types.
type HTTPTargetConfig struct { type HTTPTargetConfig struct {
URL string `json:"url"` URL string `json:"url"`
Headers map[string]string `json:"headers,omitempty"` Headers map[string]string `json:"headers,omitempty"`

View File

@@ -61,7 +61,7 @@ func testEngine(t *testing.T, workers int) *Engine {
} }
} }
// newHTTPTargetConfig returns a JSON config for an HTTP/retry target // newHTTPTargetConfig returns a JSON config for an HTTP target
// pointing at the given URL. // pointing at the given URL.
func newHTTPTargetConfig(url string) string { func newHTTPTargetConfig(url string) string {
cfg := HTTPTargetConfig{URL: url} cfg := HTTPTargetConfig{URL: url}