summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xetc/teams.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/teams.scm b/etc/teams.scm
index cacaa0e47fa..8987b8b9c18 100755
--- a/etc/teams.scm
+++ b/etc/teams.scm
@@ -145,7 +145,7 @@ exec $pre_inst_env_maybe guix repl -- "$0" "$@"
145 forgejo-team forgejo-team? 145 forgejo-team forgejo-team?
146 json->forgejo-team <=> forgejo-team->json 146 json->forgejo-team <=> forgejo-team->json
147 (name forgejo-team-name) 147 (name forgejo-team-name)
148 (id forgejo-team-id) ;integer 148 (id forgejo-team-id) ;integer | *unspecified*
149 (description forgejo-team-description) 149 (description forgejo-team-description)
150 (all-repositories? forgejo-team-all-repositories? 150 (all-repositories? forgejo-team-all-repositories?
151 "includes_all_repositories") 151 "includes_all_repositories")
@@ -372,7 +372,7 @@ PARAMETERS."
372(define (team->forgejo-team team) 372(define (team->forgejo-team team)
373 "Return a Forgejo team derived from TEAM, a <team> record." 373 "Return a Forgejo team derived from TEAM, a <team> record."
374 (forgejo-team (team-id->forgejo-id (team-id team)) 374 (forgejo-team (team-id->forgejo-id (team-id team))
375 #f 375 *unspecified* ;no numeric ID initially
376 (or (team-description team) "") 376 (or (team-description team) "")
377 #f ;all-repositories? 377 #f ;all-repositories?
378 #f ;can-create-org-repository? 378 #f ;can-create-org-repository?