diff --git a/default/content/index.json b/default/content/index.json index 3cb55f8be..80726f2fb 100644 --- a/default/content/index.json +++ b/default/content/index.json @@ -610,5 +610,17 @@ { "filename": "presets/instruct/simple-proxy-for-tavern.json", "type": "instruct" + }, + { + "filename": "presets/moving-ui/Default.json", + "type": "moving_ui" + }, + { + "filename": "presets/moving-ui/Black Magic Time.json", + "type": "moving_ui" + }, + { + "filename": "presets/quick-replies/Default.json", + "type": "quick_replies" } ] diff --git a/public/movingUI/Black Magic Time.json b/default/content/presets/moving-ui/Black Magic Time.json similarity index 100% rename from public/movingUI/Black Magic Time.json rename to default/content/presets/moving-ui/Black Magic Time.json diff --git a/public/movingUI/Default.json b/default/content/presets/moving-ui/Default.json similarity index 100% rename from public/movingUI/Default.json rename to default/content/presets/moving-ui/Default.json diff --git a/public/QuickReplies/Default.json b/default/content/presets/quick-replies/Default.json similarity index 100% rename from public/QuickReplies/Default.json rename to default/content/presets/quick-replies/Default.json diff --git a/public/QuickReplies/.gitkeep b/public/QuickReplies/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/public/backgrounds/.gitkeep b/public/backgrounds/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/public/movingUI/.gitkeep b/public/movingUI/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/src/endpoints/content-manager.js b/src/endpoints/content-manager.js index bbb444faf..ea9b5f5ca 100644 --- a/src/endpoints/content-manager.js +++ b/src/endpoints/content-manager.js @@ -163,6 +163,10 @@ function getTargetByType(type) { return DIRECTORIES.instruct; case 'context': return DIRECTORIES.context; + case 'moving_ui': + return DIRECTORIES.movingUI; + case 'quick_replies': + return DIRECTORIES.quickreplies; default: return null; }