Pass down the xFramOptions to the app configure route

This commit is contained in:
Johannes Zellner
2016-07-15 11:18:04 +02:00
parent a49e1b5117
commit ae35c20227

View File

@@ -295,7 +295,8 @@ angular.module('Application').service('Client', ['$http', 'md5', 'Notification',
cert: config.cert,
key: config.key,
memoryLimit: config.memoryLimit,
altDomain: config.altDomain || null
altDomain: config.altDomain || null,
xFrameOptions: config.xFrameOptions
};
$http.post(client.apiOrigin + '/api/v1/apps/' + id + '/configure', data).success(function (data, status) {