20 lines
360 B
JavaScript
20 lines
360 B
JavaScript
import angular from 'angular';
|
|
|
|
angular.module('portainer.app').service('SSLService', SSLServiceFactory);
|
|
|
|
/* @ngInject */
|
|
function SSLServiceFactory(SSL) {
|
|
return {
|
|
upload,
|
|
get,
|
|
};
|
|
|
|
function get() {
|
|
return SSL.get().$promise;
|
|
}
|
|
|
|
function upload(httpEnabled, cert, key) {
|
|
return SSL.upload({ httpEnabled, cert, key }).$promise;
|
|
}
|
|
}
|