m/cup
1
0
mirror of https://github.com/sergi0g/cup.git synced 2025-11-13 23:53:48 -05:00

feat: add new filter for in use images to web ui

This commit is contained in:
Raphaël C.
2025-04-27 17:48:11 +02:00
committed by Sergio
parent 4b3bf9bd8f
commit c8229d7370
14 changed files with 170 additions and 12 deletions

View File

@@ -28,6 +28,7 @@ export interface Image {
};
time: number;
server: string | null;
in_use: boolean | null;
}
interface VersionInfo {
@@ -43,3 +44,7 @@ interface DigestInfo {
local_digests: string[];
remote_digest: string;
}
export interface Filters {
onlyInUse: boolean;
}