Show selection box for dns provider

This commit is contained in:
Johannes
2016-10-25 14:51:57 +02:00
parent ae402f7afb
commit 048f3e0614
2 changed files with 12 additions and 0 deletions

View File

@@ -6,6 +6,12 @@ angular.module('Application').controller('CertsController', ['$scope', '$locatio
$scope.config = Client.getConfig();
$scope.dnsConfig = null;
$scope.dnsProvider = [
{ name: 'Manual/Wildcard', value: 'noop' },
{ name: 'AWS Route53', value: 'route53' },
{ name: 'Digital Ocean', value: 'digitalocean' }
];
$scope.defaultCert = {
error: null,
success: false,