Extending modeldefs API timeout to support M-CORD

Change-Id: I6f839b54185bdf201597cb69cd06ce9c41a1bc6f
diff --git a/src/app/datasources/rest/modeldefs.rest.ts b/src/app/datasources/rest/modeldefs.rest.ts
index 38ffb16..f4d935c 100644
--- a/src/app/datasources/rest/modeldefs.rest.ts
+++ b/src/app/datasources/rest/modeldefs.rest.ts
@@ -52,7 +52,7 @@
 
   public get(): IPromise<IXosModeldef[]> {
     const d = this.$q.defer();
-    this.$http.get(`${this.AppConfig.apiEndpoint}/modeldefs`, {timeout: 5 * 1000})
+    this.$http.get(`${this.AppConfig.apiEndpoint}/modeldefs`, {timeout: 10 * 1000})
       .then((res: any) => {
         d.resolve(res.data.items);
       })