diff options
author | Francois Kritzinger <francois@codesynthesis.com> | 2024-10-24 09:25:59 +0200 |
---|---|---|
committer | Francois Kritzinger <francois@codesynthesis.com> | 2024-10-24 13:11:30 +0200 |
commit | 6199917a8537a3c1f06ac6345d06a283c101fc6a (patch) | |
tree | c3777663dcd47e2542f4d345f038b2f5fca4569a /mod/mod-ci-github-service-data.cxx | |
parent | bc94f77ea57edfd3e5ba0d2505f451ce56bfd422 (diff) |
Pass service_data kind+phase to constructors
Diffstat (limited to 'mod/mod-ci-github-service-data.cxx')
-rw-r--r-- | mod/mod-ci-github-service-data.cxx | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/mod/mod-ci-github-service-data.cxx b/mod/mod-ci-github-service-data.cxx index e2e0440..ebb692b 100644 --- a/mod/mod-ci-github-service-data.cxx +++ b/mod/mod-ci-github-service-data.cxx @@ -105,9 +105,11 @@ namespace brep timestamp iat_ea, uint64_t iid, string rid, - string hs, - bool rr) - : kind (local), pre_check (false), re_request (rr), + enum kind k, + bool rr, + bool pc, + string hs) + : kind (k), pre_check (pc), re_request (rr), warning_success (ws), installation_access (move (iat_tok), iat_ea), installation_id (iid), @@ -125,10 +127,13 @@ namespace brep timestamp iat_ea, uint64_t iid, string rid, + enum kind k, + bool rr, + bool pc, string rs, string rcu, uint32_t prn) - : kind (local), pre_check (true), re_request (false), + : kind (k), pre_check (pc), re_request (rr), warning_success (ws), installation_access (move (iat_tok), iat_ea), installation_id (iid), |