+1
-4
appview/pages/templates/repo/issues/issue.html
+1
-4
appview/pages/templates/repo/issues/issue.html
···+{{ define "title" }}{{ .Issue.Title }} · issue #{{ .Issue.IssueId }} ·{{ .RepoInfo.FullName }}{{ end }}
+15
-9
appview/pages/templates/repo/pulls/new.html
+15
-9
appview/pages/templates/repo/pulls/new.html
······
+29
-38
appview/pages/templates/repo/pulls/pull.html
+29
-38
appview/pages/templates/repo/pulls/pull.html
··················+<form hx-post="/{{ .RepoInfo.FullName }}/pulls/{{ .Pull.PullId }}/resubmit" class="w-full" hx-swap="none">
+37
-1
appview/state/pull.go
+37
-1
appview/state/pull.go
············-resp, err := ksClient.Merge([]byte(pull.LatestPatch()), user.Did, f.RepoName, pull.TargetBranch)+resp, err := ksClient.Merge([]byte(pull.LatestPatch()), user.Did, f.RepoName, pull.TargetBranch, pull.Title, pull.Body, "", "")···
+16
-5
appview/state/signer.go
+16
-5
appview/state/signer.go
······-func (s *SignedClient) Merge(patch []byte, ownerDid, targetRepo, branch string) (*http.Response, error) {