Skip to content

Commit

Permalink
feat(motd): ignore loading for motd
Browse files Browse the repository at this point in the history
  • Loading branch information
deviantony committed Aug 22, 2018
1 parent 68d77e5 commit 46da95e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/portainer/rest/motd.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
});
}]);

0 comments on commit 46da95e

Please sign in to comment.