diff options
author | HampusM <hampus@hampusmat.com> | 2021-08-15 13:41:37 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2021-08-15 13:41:37 +0200 |
commit | c32094d0b1fc3aa5160087d71bff36ed1779bc3a (patch) | |
tree | 880b04bc207926a378fc7d5b30ee0fd421972fec /packages/api | |
parent | ddcf71225226bc0929d5c6d609b13ff0489e5b94 (diff) |
Rewrote the commit author fingerprint function & implemented commit signature verification
Diffstat (limited to 'packages/api')
-rw-r--r-- | packages/api/src/commit.d.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/api/src/commit.d.ts b/packages/api/src/commit.d.ts index 0a76f8a..c9974f3 100644 --- a/packages/api/src/commit.d.ts +++ b/packages/api/src/commit.d.ts @@ -25,6 +25,7 @@ export interface Commit { message: string, author: CommitAuthor, isSigned: boolean, + signatureVerified: boolean | null, date: number, insertions: number, deletions: number, @@ -36,6 +37,7 @@ export type LogCommit = { id: string, author: CommitAuthor, isSigned: boolean, + signatureVerified: boolean | null, message: string, date: number, insertions: number, |