Radish alpha
r
Radicle web interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
Add `reviewers` field on `Patch` scheme
xphoniex committed 2 years ago
commit a916783d6f23c672f6b59d095b9190f2c72a2672
parent 824c719313fe9e87cc0101dfbc6bf70eb82077db
1 file changed +2 -0
modified httpd-client/lib/project/patch.ts
@@ -131,6 +131,7 @@ export interface Patch {
  target: string;
  tags: string[];
  merges: Merge[];
+
  reviewers: string[];
  revisions: Revision[];
}

@@ -143,6 +144,7 @@ export const patchSchema = strictObject({
  target: string(),
  tags: array(string()),
  merges: array(mergeSchema),
+
  reviewers: array(string()),
  revisions: array(revisionSchema),
}) satisfies ZodSchema<Patch>;