mirror of https://github.com/portainer/portainer
feat(motd): ignore loading for motd
parent
68d77e5e0e
commit
46da95ecfb
|
@ -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
|
||||
}
|
||||
});
|
||||
}]);
|
||||
|
|
Loading…
Reference in New Issue