From f7db51db63d48827f3577eaebf447518cfa0a311 Mon Sep 17 00:00:00 2001 From: Rohan Sircar Date: Tue, 28 Jul 2020 23:45:12 +0530 Subject: [PATCH] Added property metadata --- ...itional-spring-configuration-metadata.json | 47 +++++++++++++------ 1 file changed, 33 insertions(+), 14 deletions(-) diff --git a/src/main/java/META-INF/additional-spring-configuration-metadata.json b/src/main/java/META-INF/additional-spring-configuration-metadata.json index fd0d566..e8fe397 100644 --- a/src/main/java/META-INF/additional-spring-configuration-metadata.json +++ b/src/main/java/META-INF/additional-spring-configuration-metadata.json @@ -1,15 +1,34 @@ -{"properties": [{ - "name": "chatto.token.timeout-duration", - "type": "java.lang.String", - "description": "The duration for auth token validity. Token expires after this period of inactivity" -}, { - "name": "chatto.frontend.log-level", - "type": "java.lang.String", - "description": "The log level for the frontend JS application" -}, -{ - "name": "chatto.frontend.chat-page-size", - "type": "java.lang.Integer", - "description": "The pagination size for the chat area" -}]} \ No newline at end of file + "properties": [ + { + "name": "chatto.token.timeout-duration", + "type": "java.lang.String", + "description": "The duration for auth token validity. Token expires after this period of inactivity" + }, + { + "name": "chatto.frontend.log-level", + "type": "java.lang.String", + "description": "The log level for the frontend JS application" + }, + { + "name": "chatto.frontend.chat-page-size", + "type": "java.lang.Integer", + "description": "The pagination size for the chat area" + }, + { + "name": "chat-worker-bundle", + "type": "java.lang.String", + "description": "Name of the chat worker js bundle" + }, + { + "name": "chat-bundle", + "type": "java.lang.String", + "description": "Name of the chatjs bundle" + }, + { + "name": "admin-bundle", + "type": "java.lang.String", + "description": "Name of the admin js bundle" + } + ] +} \ No newline at end of file