diff options
author | Francois Kritzinger <francois@codesynthesis.com> | 2024-02-05 09:48:43 +0200 |
---|---|---|
committer | Francois Kritzinger <francois@codesynthesis.com> | 2024-12-10 10:37:15 +0200 |
commit | 1c994eadb89bdafdbeb7e16adcf4f0a55c497942 (patch) | |
tree | dafbfb3eb61fe72aebacca2580a3f7f548f32caa /mod/mod-repository-root.hxx | |
parent | 5da989c5c240bd0fb6ecea265c0c742f5e58b55e (diff) |
Initial setup and handle webhook requests
Diffstat (limited to 'mod/mod-repository-root.hxx')
-rw-r--r-- | mod/mod-repository-root.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mod/mod-repository-root.hxx b/mod/mod-repository-root.hxx index 5a57403..38f6adc 100644 --- a/mod/mod-repository-root.hxx +++ b/mod/mod-repository-root.hxx @@ -27,6 +27,7 @@ namespace brep class submit; class ci; class ci_cancel; + class ci_github; class upload; class repository_root: public handler @@ -78,6 +79,7 @@ namespace brep shared_ptr<submit> submit_; shared_ptr<ci> ci_; shared_ptr<ci_cancel> ci_cancel_; + shared_ptr<ci_github> ci_github_; shared_ptr<upload> upload_; shared_ptr<options::repository_root> options_; |