diff options
author | Christopher Baines <mail@cbaines.net> | 2024-12-09 09:25:33 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2024-12-15 13:44:45 +0000 |
commit | de220be38007999ec8a2d570276bb0962441425a (patch) | |
tree | 7f7f1745dae6a661b909899f6877f5ae1e57cc6b /guix-qa-frontpage/view | |
parent | d3e526bf8a8b2723fdfd26d14c9959a060ba523b (diff) | |
download | qa-frontpage-de220be38007999ec8a2d570276bb0962441425a.tar qa-frontpage-de220be38007999ec8a2d570276bb0962441425a.tar.gz |
Update and refactor the data service details
The repository id has changed in the database, so update.
Diffstat (limited to 'guix-qa-frontpage/view')
-rw-r--r-- | guix-qa-frontpage/view/branch.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/guix-qa-frontpage/view/branch.scm b/guix-qa-frontpage/view/branch.scm index a6a6436..d7c93f7 100644 --- a/guix-qa-frontpage/view/branch.scm +++ b/guix-qa-frontpage/view/branch.scm @@ -5,6 +5,7 @@ #:use-module (ice-9 format) #:use-module ((guix-data-service model utils) #:select (group-to-alist)) #:use-module (guix-qa-frontpage manage-builds) + #:use-module (guix-qa-frontpage guix-data-service) #:use-module (guix-qa-frontpage derivation-changes) #:use-module (guix-qa-frontpage view util) #:use-module (guix-qa-frontpage view shared) @@ -53,7 +54,9 @@ td.bad { "View Git branch")) (li (a (@ (href ,(simple-format - #f "https://data.qa.guix.gnu.org/repository/2/branch/~A" + #f "~A/repository/~A/branch/~A" + %data-service-url-base + %data-service-guix-repository-id branch))) "View branch with Guix Data Service")))) |