diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2022-12-02 20:13:45 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2022-12-02 20:20:21 +0300 |
commit | 9d50600f7ca9f900f8bfdcd30668c7ee47b2c176 (patch) | |
tree | c9f83e328406495aa632925feec1e0023e3b6f77 /mod/page.hxx | |
parent | 8994205b272e655ad3f3c134dd660019b60042db (diff) |
Reflect that build tenant is archived on builds and package version details pages
Diffstat (limited to 'mod/page.hxx')
-rw-r--r-- | mod/page.hxx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/mod/page.hxx b/mod/page.hxx index acfbe5b..0a5d359 100644 --- a/mod/page.hxx +++ b/mod/page.hxx @@ -474,14 +474,18 @@ namespace brep class TR_BUILD_RESULT { public: - TR_BUILD_RESULT (const build& b, const string& h, const dir_path& r): - build_ (b), host_ (h), root_ (r) {} + TR_BUILD_RESULT (const build& b, + bool a, + const string& h, + const dir_path& r): + build_ (b), archived_ (a), host_ (h), root_ (r) {} void operator() (xml::serializer&) const; private: const build& build_; + bool archived_; const string& host_; const dir_path& root_; }; |