File tree Expand file tree Collapse file tree 3 files changed +3
-0
lines changed Expand file tree Collapse file tree 3 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -194,6 +194,7 @@ type NotificationSettingsGeneral struct {
194194type InternalPutUserNotificationSettingsGeneralResponse ApiDataResponse [NotificationSettingsGeneral ]
195195type NotificationSettings struct {
196196 GeneralSettings NotificationSettingsGeneral `json:"general_settings"`
197+ HasMachines bool `json:"has_machines"`
197198 Networks []NotificationNetwork `json:"networks"`
198199 PairedDevices []NotificationPairedDevice `json:"paired_devices"`
199200 Clients []NotificationSettingsClient `json:"clients" faker:"slice_len=10"`
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ export const useNotificationsManagementStore = defineStore('notifications-manage
3030 rocket_pool_max_collateral_threshold : 0 ,
3131 rocket_pool_min_collateral_threshold : 0 ,
3232 } ,
33+ has_machines : true ,
3334 networks : [ ] ,
3435 paired_devices : [ ] ,
3536 } ,
Original file line number Diff line number Diff line change @@ -184,6 +184,7 @@ export interface NotificationSettingsGeneral {
184184export type InternalPutUserNotificationSettingsGeneralResponse = ApiDataResponse < NotificationSettingsGeneral > ;
185185export interface NotificationSettings {
186186 general_settings : NotificationSettingsGeneral ;
187+ has_machines : boolean ;
187188 networks : NotificationNetwork [ ] ;
188189 paired_devices : NotificationPairedDevice [ ] ;
189190 clients : NotificationSettingsClient [ ] ;
You can’t perform that action at this time.
0 commit comments