mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-10 07:25:44 +01:00
show signature key on changeset
This commit is contained in:
@@ -33,6 +33,7 @@ export type Changeset = Collection & {
|
||||
author: Person;
|
||||
description: string;
|
||||
contributors?: Contributor[];
|
||||
signatures?: Signature[];
|
||||
_links: Links;
|
||||
_embedded: {
|
||||
tags?: Tag[];
|
||||
@@ -41,6 +42,14 @@ export type Changeset = Collection & {
|
||||
};
|
||||
};
|
||||
|
||||
export type Signature = {
|
||||
keyId: string;
|
||||
type: string;
|
||||
status: "VERIFIED" | "NOT_FOUND" | "INVALID";
|
||||
owner: string;
|
||||
contacts: string[];
|
||||
}
|
||||
|
||||
export type Contributor = {
|
||||
person: Person;
|
||||
type: string;
|
||||
|
||||
Reference in New Issue
Block a user