mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-03-12 03:17:36 +03:00
43 lines
877 B
TypeScript
43 lines
877 B
TypeScript
|
|
import type { SectionConfigOverrides } from "./types";
|
||
|
|
|
||
|
|
const birdseye: SectionConfigOverrides = {
|
||
|
|
base: {
|
||
|
|
sectionDocs: "/configuration/birdseye",
|
||
|
|
restartRequired: [],
|
||
|
|
fieldOrder: ["enabled", "mode", "order"],
|
||
|
|
hiddenFields: [],
|
||
|
|
advancedFields: [],
|
||
|
|
overrideFields: ["enabled", "mode"],
|
||
|
|
},
|
||
|
|
global: {
|
||
|
|
fieldOrder: [
|
||
|
|
"enabled",
|
||
|
|
"restream",
|
||
|
|
"width",
|
||
|
|
"height",
|
||
|
|
"quality",
|
||
|
|
"mode",
|
||
|
|
"layout",
|
||
|
|
"inactivity_threshold",
|
||
|
|
"idle_heartbeat_fps",
|
||
|
|
],
|
||
|
|
advancedFields: ["width", "height", "quality", "inactivity_threshold"],
|
||
|
|
restartRequired: [
|
||
|
|
"enabled",
|
||
|
|
"restream",
|
||
|
|
"width",
|
||
|
|
"height",
|
||
|
|
"quality",
|
||
|
|
"layout.scaling_factor",
|
||
|
|
"idle_heartbeat_fps",
|
||
|
|
],
|
||
|
|
uiSchema: {
|
||
|
|
mode: {
|
||
|
|
"ui:size": "xs",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
};
|
||
|
|
|
||
|
|
export default birdseye;
|