diff --git a/src/js/client.js b/src/js/client.js index ea6c4d996..17fe1d915 100644 --- a/src/js/client.js +++ b/src/js/client.js @@ -962,7 +962,7 @@ angular.module('Application').service('Client', ['$http', '$interval', '$timeout }; Client.prototype.setIPv6Config = function (config, callback) { - post('/api/v1/settings/ipv6', config, null, function (error, data, status) { + post('/api/v1/settings/ipv6_config', config, null, function (error, data, status) { if (error) return callback(error); if (status !== 200) return callback(new ClientError(status, data)); callback(null); @@ -970,7 +970,7 @@ angular.module('Application').service('Client', ['$http', '$interval', '$timeout }; Client.prototype.getIPv6Config = function (callback) { - get('/api/v1/settings/ipv6', null, function (error, data, status) { + get('/api/v1/settings/ipv6_config', null, function (error, data, status) { if (error) return callback(error); if (status !== 200) return callback(new ClientError(status, data)); diff --git a/src/translation/en.json b/src/translation/en.json index 20a4afcce..01ba26473 100644 --- a/src/translation/en.json +++ b/src/translation/en.json @@ -741,7 +741,10 @@ "ipv6": { "address": "IPv6 Address", "title": "IPv6", - "description": "Enable this option to configure DNS AAAA records for the apps and the mail server." + "description": "Cloudron uses this IPv6 address to setup DNS AAAA records.\n" + }, + "configureIpv6": { + "title": "Configure IPv6 Provider" } }, "services": { diff --git a/src/views/network.html b/src/views/network.html index 8fbb3138d..ede1650d5 100644 --- a/src/views/network.html +++ b/src/views/network.html @@ -9,12 +9,12 @@