Check dns records for generic dns providers
This commit is contained in:
committed by
Johannes Zellner
parent
e58068688c
commit
1065b56380
@@ -442,6 +442,13 @@ angular.module('Application').service('Client', ['$http', 'md5', 'Notification',
|
||||
}).error(defaultErrorHandler(callback));
|
||||
};
|
||||
|
||||
Client.prototype.getExpectedDnsRecords = function (callback) {
|
||||
get('/api/v1/settings/expected_dns_records').success(function(data, status) {
|
||||
if (status !== 200) return callback(new ClientError(status, data));
|
||||
callback(null, data);
|
||||
}).error(defaultErrorHandler(callback));
|
||||
};
|
||||
|
||||
Client.prototype.setAppstoreConfig = function (config, callback) {
|
||||
var data = config;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user