From 6788225f0f7be8f35dbcc0fcd498698c49f94326 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Fri, 27 Dec 2024 22:44:47 +0100 Subject: fix(back): add correct links to rss feed MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Silas Schöffel --- pkgs/by-name/ba/back/src/config/mod.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'pkgs/by-name/ba/back/src/config/mod.rs') diff --git a/pkgs/by-name/ba/back/src/config/mod.rs b/pkgs/by-name/ba/back/src/config/mod.rs index a680b90..7351ad8 100644 --- a/pkgs/by-name/ba/back/src/config/mod.rs +++ b/pkgs/by-name/ba/back/src/config/mod.rs @@ -25,12 +25,14 @@ pub struct BackConfig { // `` of all kinds _should_ be invalid. <2024-12-26> pub source_code_repository_url: Url, pub repository: ThreadSafeRepository, + pub root: Url, } #[derive(Deserialize)] struct RawBackConfig { source_code_repository_url: Url, repository_path: PathBuf, + root_url: Url, } impl BackConfig { @@ -64,6 +66,7 @@ impl TryFrom for BackConfig { Ok(Self { repository, source_code_repository_url: value.source_code_repository_url, + root: value.root_url, }) } } -- cgit 1.4.1