summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/ConfiguratorModuleConfig.vue
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/src/components/ConfiguratorModuleConfig.vue')
-rw-r--r--webapp/src/components/ConfiguratorModuleConfig.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/webapp/src/components/ConfiguratorModuleConfig.vue b/webapp/src/components/ConfiguratorModuleConfig.vue
index 946492b..d61cce4 100644
--- a/webapp/src/components/ConfiguratorModuleConfig.vue
+++ b/webapp/src/components/ConfiguratorModuleConfig.vue
@@ -142,7 +142,7 @@ export default {
else this.expertMode = false
this.items = []
if (value.info.id) {
- this.$http.get('/api/configurator/configs/' + value.info.id + '/entries').then(response => {
+ this.$http.get('/api/ipxeconfigs/' + value.info.id + '/entries').then(response => {
this.items = response.data.map(entry => ({
entry: { id: entry.id, name: entry.name },
customName: entry.config_x_entry.customName,
@@ -169,7 +169,7 @@ export default {
this.items.splice(this.items.indexOf(item), 1)
},
async saveConfig () {
- let url = '/api/configurator/configs'
+ let url = '/api/ipxeconfigs'
if (this.dialog.info.id !== undefined) url += '/' + this.dialog.info.id
await this.$http.post(url, {
data: {