mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-28 01:10:54 +01:00
* feat: add password requirements * fix: format issue * fix: unexpected empty string in component jsx * test: adjust unit test passwords
29 lines
775 B
TypeScript
29 lines
775 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";
|
|
export { passwordRequirements } from "./user";
|