-
Notifications
You must be signed in to change notification settings - Fork 74
v0.2.51..v0.2.52 changeset HootProperties.java
Garret Voltz edited this page Jan 15, 2020
·
1 revision
diff --git a/hoot-services/src/main/java/hoot/services/HootProperties.java b/hoot-services/src/main/java/hoot/services/HootProperties.java
index 7454431..d99871e 100644
--- a/hoot-services/src/main/java/hoot/services/HootProperties.java
+++ b/hoot-services/src/main/java/hoot/services/HootProperties.java
@@ -62,6 +62,7 @@ public final class HootProperties {
public static final String BASEMAPS_TILES_FOLDER;
public static final String BASEMAPS_FOLDER;
public static final String JS_HEADER_SCRIPT_PATH;
+ public static final String CHANGESETS_FOLDER;
public static final String SCRIPT_FOLDER;
public static final String DEFAULT_TRANSLATIONS_CONFIG;
public static final String DEFAULT_FOUO_TRANSLATIONS_CONFIG;
@@ -271,6 +272,9 @@ public final class HootProperties {
// Root folder of tomcat writable locations
USERFILES_FOLDER = HOME_FOLDER + File.separator + "userfiles";
+ // User generated changesets location
+ CHANGESETS_FOLDER = USERFILES_FOLDER + File.separator + "changesets";
+
// User uploaded translation scripts go here
SCRIPT_FOLDER = USERFILES_FOLDER + File.separator + "customscript";