-
Library Management
+
-
-
-
+
+ {/* TODO */}
-
-
+
+
- Metadata
-
-
-
-
-
+
+
-
-
-
- )}
-
+
+
+
+
+
+
);
-}
\ No newline at end of file
+}
+
+const validationSchema = Yup.object({
+ library: Yup.object({
+ metadata: Yup.object({
+ update: Yup.object({
+ // @ts-ignore
+ schedule: Yup.string().cron()
+ })
+ })
+ })
+});
+
+export const LibraryManagement = withConfigPage(LibraryManagementLayout, "Library Management", "library", validationSchema);
\ No newline at end of file
diff --git a/src/main/frontend/components/administration/ProfileManagement.tsx b/src/main/frontend/components/administration/ProfileManagement.tsx
new file mode 100644
index 0000000..e848319
--- /dev/null
+++ b/src/main/frontend/components/administration/ProfileManagement.tsx
@@ -0,0 +1,11 @@
+import Section from "Frontend/components/general/Section";
+
+export default function ProfileManagement() {
+ return (
+