repos / git-pr

a self-hosted git collaboration server
git clone https://github.com/picosh/git-pr.git

commit
6ac35cb
parent
ae4dc9b
author
Eric Bower
date
2024-05-31 13:01:11 -0400 EDT
chore: more repos
3 files changed,  +18, -0
M cfg.go
M cfg.go
+10, -0
 1@@ -23,6 +23,16 @@ func NewGitCfg() *GitCfg {
 2 				Desc:      "A test repo to play around with Patch Requests",
 3 				CloneAddr: "git@github.com:picosh/test",
 4 			},
 5+			{
 6+				ID:        "pico",
 7+				Desc:      "hacker labs - open and managed web services leveraging ssh",
 8+				CloneAddr: "git@github.com:picosh/pico",
 9+			},
10+			{
11+				ID:        "ptun",
12+				Desc:      "passwordless authentication for the web",
13+				CloneAddr: "git@github.com:picosh/ptun",
14+			},
15 		},
16 	}
17 }
M tmpl/pr-detail.html
+4, -0
 1@@ -25,6 +25,10 @@
 2         <div>{{.Body}}</div>
 3       </div>
 4     </div>
 5+    {{else}}
 6+    <div class="box">
 7+      No patches found for patch request.
 8+    </div>
 9     {{end}}
10   </div>
11 </main>
M tmpl/repo-detail.html
+4, -0
 1@@ -23,6 +23,10 @@
 2       <code>{{.Pubkey}}</code>
 3     </div>
 4   </article>
 5+  {{else}}
 6+  <article class="box">
 7+    <div>No patch requests for this repo.</div>
 8+  </article>
 9   {{end}}
10 </main>
11 {{end}}