mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-03-10 02:29:19 +03:00
18 lines
361 B
TypeScript
18 lines
361 B
TypeScript
|
|
import type { SectionConfigOverrides } from "./types";
|
||
|
|
|
||
|
|
const database: SectionConfigOverrides = {
|
||
|
|
base: {
|
||
|
|
sectionDocs: "/configuration/advanced#database",
|
||
|
|
restartRequired: ["path"],
|
||
|
|
fieldOrder: ["path"],
|
||
|
|
advancedFields: [],
|
||
|
|
uiSchema: {
|
||
|
|
path: {
|
||
|
|
"ui:options": { size: "md" },
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
};
|
||
|
|
|
||
|
|
export default database;
|