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) {
|
.factory('Motd', ['$resource', 'API_ENDPOINT_MOTD', function MotdFactory($resource, API_ENDPOINT_MOTD) {
|
||||||
'use strict';
|
'use strict';
|
||||||
return $resource(API_ENDPOINT_MOTD, {}, {
|
return $resource(API_ENDPOINT_MOTD, {}, {
|
||||||
get: { method: 'GET' }
|
get: {
|
||||||
|
method: 'GET',
|
||||||
|
ignoreLoadingBar: true
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}]);
|
}]);
|
||||||
|
|
Loading…
Reference in New Issue