From 46da95ecfb300aab1d5e0ed783341bbd2385d96f Mon Sep 17 00:00:00 2001 From: Anthony Lapenna Date: Wed, 22 Aug 2018 13:18:02 +0200 Subject: [PATCH] feat(motd): ignore loading for motd --- app/portainer/rest/motd.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/portainer/rest/motd.js b/app/portainer/rest/motd.js index 49e54f534..4211ef0fd 100644 --- a/app/portainer/rest/motd.js +++ b/app/portainer/rest/motd.js @@ -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 + } }); }]);