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