* wip: add apps crud * wip: add edit for apps * feat: add apps crud * fix: color of icon for no app results wrong * ci: fix lint issues * test: add unit tests for app crud * ci: fix format issue * fix: missing rename in edit form * fix: missing callback deepsource issues
14 lines
363 B
TypeScript
14 lines
363 B
TypeScript
import { appSchemas } from "./app";
|
|
import { boardSchemas } from "./board";
|
|
import { integrationSchemas } from "./integration";
|
|
import { userSchemas } from "./user";
|
|
|
|
export const validation = {
|
|
user: userSchemas,
|
|
integration: integrationSchemas,
|
|
board: boardSchemas,
|
|
app: appSchemas,
|
|
};
|
|
|
|
export { createSectionSchema, sharedItemSchema } from "./shared";
|