added option to update multiple service states at once
minor frontend improvements
This commit is contained in:
parent
b6b0084641
commit
6799b64f2a
6 changed files with 48 additions and 46 deletions
|
@ -8,6 +8,7 @@ export interface CurrentStatus {
|
|||
export interface Group {
|
||||
id: string;
|
||||
name: string;
|
||||
url?: string;
|
||||
state: State;
|
||||
services: Service[];
|
||||
}
|
||||
|
@ -15,7 +16,7 @@ export interface Group {
|
|||
export interface Service {
|
||||
id: string;
|
||||
name: string;
|
||||
url: string;
|
||||
url?: string;
|
||||
state: State;
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue