1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-02 20:35:25 +02:00

feat(motd): ignore loading for motd

This commit is contained in:
Anthony Lapenna 2018-08-22 13:18:02 +02:00
parent 68d77e5e0e
commit 46da95ecfb

View file

@ -2,6 +2,9 @@ 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' }
get: {
method: 'GET',
ignoreLoadingBar: true
}
});
}]);