allow key download from signature in changeset view

This commit is contained in:
Konstantin Schaper
2020-08-06 21:57:31 +02:00
parent e5215bd97b
commit 143d4273b8
14 changed files with 244 additions and 76 deletions

View File

@@ -22,7 +22,7 @@
* SOFTWARE.
*/
import { Collection, Links } from "./hal";
import {Collection, Link, Links} from "./hal";
import { Tag } from "./Tags";
import { Branch } from "./Branches";
import { Person } from "./Person";
@@ -48,6 +48,9 @@ export type Signature = {
status: "VERIFIED" | "NOT_FOUND" | "INVALID";
owner: string;
contacts: Person[];
_links?: {
rawKey?: Link;
};
}
export type Contributor = {