You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@atlas.apache.org by sa...@apache.org on 2018/07/04 20:13:55 UTC

atlas git commit: ATLAS-2773: UI : excluded internal types from all typedefs API calls

Repository: atlas
Updated Branches:
  refs/heads/master 153882297 -> a2c26bfc2


ATLAS-2773: UI : excluded internal types from all typedefs API calls

Signed-off-by: Sarath Subramanian <ss...@hortonworks.com>


Project: http://git-wip-us.apache.org/repos/asf/atlas/repo
Commit: http://git-wip-us.apache.org/repos/asf/atlas/commit/a2c26bfc
Tree: http://git-wip-us.apache.org/repos/asf/atlas/tree/a2c26bfc
Diff: http://git-wip-us.apache.org/repos/asf/atlas/diff/a2c26bfc

Branch: refs/heads/master
Commit: a2c26bfc2dd46e7fe6666231eabaed8976a916ab
Parents: 1538822
Author: Abhishek Kadam <ab...@gmail.com>
Authored: Wed Jul 4 13:13:41 2018 -0700
Committer: Sarath Subramanian <ss...@hortonworks.com>
Committed: Wed Jul 4 13:13:41 2018 -0700

----------------------------------------------------------------------
 dashboardv2/public/js/utils/UrlLinks.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/atlas/blob/a2c26bfc/dashboardv2/public/js/utils/UrlLinks.js
----------------------------------------------------------------------
diff --git a/dashboardv2/public/js/utils/UrlLinks.js b/dashboardv2/public/js/utils/UrlLinks.js
index 1437871..a53bb77 100644
--- a/dashboardv2/public/js/utils/UrlLinks.js
+++ b/dashboardv2/public/js/utils/UrlLinks.js
@@ -45,7 +45,7 @@ define(['require', 'utils/Enums', 'utils/Utils', 'underscore'], function(require
             if (name) {
                 return defApiUrl.def + '/name/' + name + '?type=' + type;
             } else {
-                return defApiUrl.defs + '?type=' + type;
+                return defApiUrl.defs + '?excludeInternalTypesAndReferences=true&type=' + type;
             }
         },
         entitiesApiUrl: function(guid, name) {
@@ -78,7 +78,7 @@ define(['require', 'utils/Enums', 'utils/Utils', 'underscore'], function(require
             }
         },
         typesApiUrl: function() {
-            return this.typedefsUrl().defs + '/headers'
+            return this.typedefsUrl().defs + '/headers?excludeInternalTypesAndReferences=true'
         },
         lineageApiUrl: function(guid) {
             var lineageUrl = this.baseUrlV2 + '/lineage';