mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-27 17:00:54 +01:00
* feat: add custom css for board and custom classes in advanced options for items * chore: add mysql migration * fix: test not working * fix: format issues * fix: typecheck issue * fix: build issue * chore: add missing translations * fix: merge issues related to migrations * fix: format issues * fix: merge issue with migration * fix: format issue
28 lines
728 B
TypeScript
28 lines
728 B
TypeScript
import { appSchemas } from "./app";
|
|
import { boardSchemas } from "./board";
|
|
import { groupSchemas } from "./group";
|
|
import { iconsSchemas } from "./icons";
|
|
import { integrationSchemas } from "./integration";
|
|
import { locationSchemas } from "./location";
|
|
import { userSchemas } from "./user";
|
|
import { widgetSchemas } from "./widgets";
|
|
|
|
export const validation = {
|
|
user: userSchemas,
|
|
group: groupSchemas,
|
|
integration: integrationSchemas,
|
|
board: boardSchemas,
|
|
app: appSchemas,
|
|
widget: widgetSchemas,
|
|
location: locationSchemas,
|
|
icons: iconsSchemas,
|
|
};
|
|
|
|
export {
|
|
createSectionSchema,
|
|
sharedItemSchema,
|
|
itemAdvancedOptionsSchema,
|
|
type BoardItemIntegration,
|
|
type BoardItemAdvancedOptions,
|
|
} from "./shared";
|