radicle-interface icon indicating copy to clipboard operation
radicle-interface copied to clipboard

Add an array of parents to the `CommitHeader` type

Open sebastinez opened this issue 2 years ago • 2 comments

We currently are missing a listing of the parent commits of a specific commit

export interface CommitHeader {
  author: Author;
  committer: Author;
  committerTime: number;
  description: string;
  sha1: string;
  summary: string;
}

We should add the following property to this interface

parents: string[]

This would also need a rewrite on the http-api to use radicle_surf instead of radicle_source as currently used.

sebastinez avatar Sep 08 '22 15:09 sebastinez