mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-03-11 02:47:37 +03:00
13 lines
345 B
TypeScript
13 lines
345 B
TypeScript
|
|
import type { SectionConfigOverrides } from "./types";
|
||
|
|
|
||
|
|
const classification: SectionConfigOverrides = {
|
||
|
|
base: {
|
||
|
|
sectionDocs: "/configuration/custom_classification/object_classification",
|
||
|
|
restartRequired: ["bird.enabled", "bird.threshold"],
|
||
|
|
hiddenFields: ["custom"],
|
||
|
|
advancedFields: [],
|
||
|
|
},
|
||
|
|
};
|
||
|
|
|
||
|
|
export default classification;
|