aboutsummaryrefslogtreecommitdiff
path: root/guix-qa-frontpage/debbugs.scm
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2023-09-26 18:42:32 +0100
committerChristopher Baines <mail@cbaines.net>2023-09-26 19:24:04 +0100
commit71c0888ed6cd6fbcb4b860baa54e43113288ed36 (patch)
treedee18c4b5b15a560110c8d4e04b2c175c5be0927 /guix-qa-frontpage/debbugs.scm
parent4db90aa5ceb966071971eb5f2f1d8126e1557cba (diff)
downloadqa-frontpage-71c0888ed6cd6fbcb4b860baa54e43113288ed36.tar
qa-frontpage-71c0888ed6cd6fbcb4b860baa54e43113288ed36.tar.gz
Show the guix usertags on the issue page
Diffstat (limited to 'guix-qa-frontpage/debbugs.scm')
-rw-r--r--guix-qa-frontpage/debbugs.scm25
1 files changed, 25 insertions, 0 deletions
diff --git a/guix-qa-frontpage/debbugs.scm b/guix-qa-frontpage/debbugs.scm
new file mode 100644
index 0000000..ea37e13
--- /dev/null
+++ b/guix-qa-frontpage/debbugs.scm
@@ -0,0 +1,25 @@
+;;; Guix QA Frontpage
+;;;
+;;; Copyright © 2023 Christopher Baines <mail@cbaines.net>
+;;;
+;;; This program is free software: you can redistribute it and/or
+;;; modify it under the terms of the GNU Affero General Public License
+;;; as published by the Free Software Foundation, either version 3 of
+;;; the License, or (at your option) any later version.
+;;;
+;;; This program is distributed in the hope that it will be useful,
+;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+;;; Affero General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU Affero General Public
+;;; License along with this program. If not, see
+;;; <http://www.gnu.org/licenses/>.
+
+(define-module (guix-qa-frontpage debbugs)
+ #:use-module (debbugs)
+ #:export (debbugs-get-issues-with-guix-usertag))
+
+(define (debbugs-get-issues-with-guix-usertag)
+ (soap-invoke (%gnu) get-usertag "guix"))
+