Adds a `notification_tasks` table and a background worker to (hopefully reliably) deliver webhooks, git status updates, and e-mail notifications with automatic retry on transient failures. This was one of the critical gaps, finally done. Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: I794967c66958658c4d8aed40793d67f96a6a6964
20 lines
441 B
Rust
20 lines
441 B
Rust
pub mod api_keys;
|
|
pub mod build_dependencies;
|
|
pub mod build_metrics;
|
|
pub mod build_products;
|
|
pub mod build_steps;
|
|
pub mod builds;
|
|
pub mod channels;
|
|
pub mod evaluations;
|
|
pub mod failed_paths_cache;
|
|
pub mod jobset_inputs;
|
|
pub mod jobsets;
|
|
pub mod notification_configs;
|
|
pub mod notification_tasks;
|
|
pub mod project_members;
|
|
pub mod projects;
|
|
pub mod remote_builders;
|
|
pub mod search;
|
|
pub mod starred_jobs;
|
|
pub mod users;
|
|
pub mod webhook_configs;
|