diff options
author | HampusM <hampus@hampusmat.com> | 2021-08-11 12:59:23 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2021-08-11 12:59:23 +0200 |
commit | 108b469cbb09f911c9a52d4134a504d9b51ac30d (patch) | |
tree | 309763642bf53b4adecf20bfd09047715f572c39 /packages/api/src/commit.d.ts | |
parent | 3eb8757b8db81476782870d460e3d856907186a7 (diff) |
Implemented gpg signed commit support
Diffstat (limited to 'packages/api/src/commit.d.ts')
-rw-r--r-- | packages/api/src/commit.d.ts | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/packages/api/src/commit.d.ts b/packages/api/src/commit.d.ts index 6eb598c..0a76f8a 100644 --- a/packages/api/src/commit.d.ts +++ b/packages/api/src/commit.d.ts @@ -18,9 +18,13 @@ export type Patch = { too_large: boolean, hunks: Hunk[] } +export interface CommitAuthor extends Author { + fingerprint: string | null +} export interface Commit { message: string, - author: Author, + author: CommitAuthor, + isSigned: boolean, date: number, insertions: number, deletions: number, @@ -30,10 +34,8 @@ export interface Commit { export type LogCommit = { id: string, - author: { - name: string, - email: string - }, + author: CommitAuthor, + isSigned: boolean, message: string, date: number, insertions: number, |