mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 12:11:56 +00:00
refactor: change kiosk parameter from Option<bool> to bool
Simplifies the setup API by making kiosk mandatory at the protocol level, with platform-specific filtering applied at the database layer.
This commit is contained in:
@@ -4,5 +4,5 @@ import type { EncryptedWire } from './EncryptedWire'
|
||||
export type AttachParams = {
|
||||
password: EncryptedWire | null
|
||||
guid: string
|
||||
kiosk?: boolean
|
||||
kiosk: boolean
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@ export type SetupExecuteParams = {
|
||||
guid: string
|
||||
password: EncryptedWire | null
|
||||
recoverySource: RecoverySource<EncryptedWire> | null
|
||||
kiosk?: boolean
|
||||
kiosk: boolean
|
||||
name: string | null
|
||||
hostname: string | null
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user