You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
portainer/app/portainer/rest/motd.js

18 lines
335 B

angular.module('portainer.app').factory('Motd', [
'$resource',
'API_ENDPOINT_MOTD',
function MotdFactory($resource, API_ENDPOINT_MOTD) {
'use strict';
return $resource(
API_ENDPOINT_MOTD,
{},
{
get: {
method: 'GET',
ignoreLoadingBar: true,
},
}
);
},
]);