aboutsummaryrefslogtreecommitdiff
path: root/mod/mod-ci-github.hxx
diff options
context:
space:
mode:
authorFrancois Kritzinger <francois@codesynthesis.com>2024-03-20 12:48:12 +0200
committerFrancois Kritzinger <francois@codesynthesis.com>2024-10-15 09:05:27 +0200
commitb4403afe42dde4f3e9a19f8ccc8a3542b8186842 (patch)
tree5a279f2d3f302c85f386bd912b5d8642244dadf5 /mod/mod-ci-github.hxx
parent4fa5ee0814b1220510819254fca1292cd769db2a (diff)
Fix id/node_id confusion
Diffstat (limited to 'mod/mod-ci-github.hxx')
-rw-r--r--mod/mod-ci-github.hxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/mod/mod-ci-github.hxx b/mod/mod-ci-github.hxx
index 713eb4b..2a4921d 100644
--- a/mod/mod-ci-github.hxx
+++ b/mod/mod-ci-github.hxx
@@ -49,7 +49,6 @@ namespace brep
//
struct check_suite
{
- uint64_t id; // Note: used for installation access token (REST API).
string node_id;
string head_branch;
string head_sha;
@@ -90,7 +89,7 @@ namespace brep
struct installation
{
- uint64_t id;
+ uint64_t id; // Note: used for installation access token (REST API).
explicit
installation (json::parser&);