Re: Review Request 72894: ATLAS-3952 :- Authorize Super And SubTypes and depend entityType for type-read access while creating Classificationdef

2020-09-22 Thread Madhan Neethiraj

---
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/72894/#review221921
---




intg/src/main/java/org/apache/atlas/type/AtlasTypeRegistry.java
Line 753 (original)


I suggest to not remove this validation from here. BTW, has this validation 
been moved to else where?



repository/src/main/java/org/apache/atlas/repository/store/graph/v2/AtlasClassificationDefStoreV2.java
Lines 77 (patched)


'subTypes' is a read-only/computed field. It is ignored during 
create/update operations. Please remove subTypes from 'typeNames'.



repository/src/main/java/org/apache/atlas/repository/store/graph/v2/AtlasClassificationDefStoreV2.java
Lines 80 (patched)


verifyReadAccessForSuperAndSubTypes() => verifyTypeReadAccess()



repository/src/main/java/org/apache/atlas/repository/store/graph/v2/AtlasClassificationDefStoreV2.java
Lines 379 (patched)


When multiple classifications are created in one REST call, 
typeRegistry.getTypeDefByName(typeName) will return null when typeName is one 
of the newly created type. For example:

  {
"classificationDefs": [
  {
"name": "tagBase"
  },
  {
"name": "tagDerived",
"superTypes": [ "typeBase" ]
  }
]
  }

Please validate above.


- Madhan Neethiraj


On Sept. 22, 2020, 10:59 a.m., Nixon Rodrigues wrote:
> 
> ---
> This is an automatically generated e-mail. To reply, visit:
> https://reviews.apache.org/r/72894/
> ---
> 
> (Updated Sept. 22, 2020, 10:59 a.m.)
> 
> 
> Review request for atlas, chaitali, Jayendra Parab, Madhan Neethiraj, Nikhil 
> Bonte, and Sarath Subramanian.
> 
> 
> Bugs: ATLAS-3952
> https://issues.apache.org/jira/browse/ATLAS-3952
> 
> 
> Repository: atlas
> 
> 
> Description
> ---
> 
> This patch consist two fixes.
> 1) Authorize Super And SubTypes and entityType for type-read access before 
> creating Classificationdef.
> 2) Move create-type access check before duplicate "Given type _ already 
> exists" validation.
> 
> 
> Diffs
> -
> 
>   intg/src/main/java/org/apache/atlas/type/AtlasTypeRegistry.java 4a79b6fd5 
>   
> repository/src/main/java/org/apache/atlas/repository/store/graph/v2/AtlasClassificationDefStoreV2.java
>  9ffede4e3 
> 
> 
> Diff: https://reviews.apache.org/r/72894/diff/1/
> 
> 
> Testing
> ---
> 
> Tested creating classification while superTypes/ subTypes and entityType with 
> valid/invalid read-Type access.
> Testing duplicate classification while valid/invalid create-type access.
> 
> 
> Thanks,
> 
> Nixon Rodrigues
> 
>



Re: Review Request 72892: ATLAS-3951 : Authorize entity-type for type-read permission before creating entity of that type.

2020-09-22 Thread Nixon Rodrigues

---
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/72892/
---

(Updated Sept. 22, 2020, 12:17 p.m.)


Review request for atlas, Ashutosh Mestry, Jayendra Parab, Madhan Neethiraj, 
and Sarath Subramanian.


Bugs: ATLAS-3951
https://issues.apache.org/jira/browse/ATLAS-3951


Repository: atlas


Description
---

Bug :- User is able to create entities of type though he doesn't have read 
permissions on the type.

This patch updates the createOrUpdate entities flow to add type-read 
authorization for entity-type of the entity tobe created.


Diffs
-

  
repository/src/main/java/org/apache/atlas/repository/store/graph/v2/AtlasEntityStoreV2.java
 7cf77ea04 


Diff: https://reviews.apache.org/r/72892/diff/1/


Testing
---

Tried Creating entities with non authorized and authorized entity types.


Thanks,

Nixon Rodrigues



[jira] [Updated] (ATLAS-3952) Authorize Super And SubTypes and depend entityType for type-read access while creating Classificationdef

2020-09-22 Thread Nixon Rodrigues (Jira)


 [ 
https://issues.apache.org/jira/browse/ATLAS-3952?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Nixon Rodrigues updated ATLAS-3952:
---
Attachment: ATLAS-3952.patch

> Authorize Super And SubTypes and depend entityType for type-read access while 
> creating Classificationdef
> 
>
> Key: ATLAS-3952
> URL: https://issues.apache.org/jira/browse/ATLAS-3952
> Project: Atlas
>  Issue Type: Bug
>Reporter: Nixon Rodrigues
>Priority: Major
> Attachments: ATLAS-3952.patch
>
>
> User is able to create a type with a super type though he doesn't have read 
> permission on super type , subtype



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


Review Request 72894: ATLAS-3952 :- Authorize Super And SubTypes and depend entityType for type-read access while creating Classificationdef

2020-09-22 Thread Nixon Rodrigues

---
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/72894/
---

Review request for atlas, chaitali, Jayendra Parab, Madhan Neethiraj, Nikhil 
Bonte, and Sarath Subramanian.


Bugs: ATLAS-3952
https://issues.apache.org/jira/browse/ATLAS-3952


Repository: atlas


Description
---

This patch consist two fixes.
1) Authorize Super And SubTypes and entityType for type-read access before 
creating Classificationdef.
2) Move create-type access check before duplicate "Given type _ already exists" 
validation.


Diffs
-

  intg/src/main/java/org/apache/atlas/type/AtlasTypeRegistry.java 4a79b6fd5 
  
repository/src/main/java/org/apache/atlas/repository/store/graph/v2/AtlasClassificationDefStoreV2.java
 9ffede4e3 


Diff: https://reviews.apache.org/r/72894/diff/1/


Testing
---

Tested creating classification while superTypes/ subTypes and entityType with 
valid/invalid read-Type access.
Testing duplicate classification while valid/invalid create-type access.


Thanks,

Nixon Rodrigues



[jira] [Created] (ATLAS-3952) Authorize Super And SubTypes and depend entityType for type-read access while creating Classificationdef

2020-09-22 Thread Nixon Rodrigues (Jira)
Nixon Rodrigues created ATLAS-3952:
--

 Summary: Authorize Super And SubTypes and depend entityType for 
type-read access while creating Classificationdef
 Key: ATLAS-3952
 URL: https://issues.apache.org/jira/browse/ATLAS-3952
 Project: Atlas
  Issue Type: Bug
Reporter: Nixon Rodrigues


User is able to create a type with a super type though he doesn't have read 
permission on super type , subtype



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ATLAS-3947) Skip authorization for read _ALL_ENTITY_TYPES and _ALL_CLASSIFICATION_TYPES types

2020-09-22 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ATLAS-3947?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17199963#comment-17199963
 ] 

ASF subversion and git services commented on ATLAS-3947:


Commit 74229d87043bc55a4dd83cad37db59031d624af5 in atlas's branch 
refs/heads/dependabot/npm_and_yarn/dashboardv2/bootstrap-3.4.1 from Nixon 
Rodrigues
[ https://gitbox.apache.org/repos/asf?p=atlas.git;h=74229d8 ]

ATLAS-3947 : Skip authorization for read of _ALL_ENTITY_TYPES and 
_ALL_CLASSIFICATION_TYPES types

Change-Id: Iecd8ab427510cb37aaff99e420c25a579631dd4d


> Skip authorization for read _ALL_ENTITY_TYPES and _ALL_CLASSIFICATION_TYPES 
> types
> -
>
> Key: ATLAS-3947
> URL: https://issues.apache.org/jira/browse/ATLAS-3947
> Project: Atlas
>  Issue Type: Improvement
>Reporter: Nixon Rodrigues
>Assignee: Nixon Rodrigues
>Priority: Major
> Attachments: ATLAS-3947.patch
>
>
> Skip authorization for read of _ALL_ENTITY_TYPES type of entity type  and 
> _ALL_CLASSIFICATION_TYPES type of classification type.
>  This are internally required by for system attributes search. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ATLAS-3944) Logs of import scripts should go to Atlas default log directory

2020-09-22 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ATLAS-3944?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17199958#comment-17199958
 ] 

ASF subversion and git services commented on ATLAS-3944:


Commit 62c682b344c245015bca4e3d6bf7f55b5394a5e2 in atlas's branch 
refs/heads/dependabot/npm_and_yarn/dashboardv2/bootstrap-3.4.1 from Deep Singh
[ https://gitbox.apache.org/repos/asf?p=atlas.git;h=62c682b ]

ATLAS-3944: Logs of import scripts should go to Atlas default log directory

Signed-off-by: Ashutosh Mestry 


> Logs of import scripts should go to Atlas default log directory
> ---
>
> Key: ATLAS-3944
> URL: https://issues.apache.org/jira/browse/ATLAS-3944
> Project: Atlas
>  Issue Type: Bug
>  Components: atlas-intg
>Affects Versions: trunk, 2.1.0
>Reporter: Deep Singh
>Assignee: Deep Singh
>Priority: Major
> Fix For: trunk
>
> Attachments: 0001-Setting-default-log-directory-to-var-log-atlas.patch
>
>
> Import scripts like import-hbase.sh try to dump logs in a log directory 
> inside the base directory. Most of the users running import scripts have 
> read-only access to the base directory, this leads to the following error 
> exception.
> java.io.FileNotFoundException: 
> /opt/cloudera/parcels/CDH/lib/atlas/logs/import-hbase.log (No such file or 
> directory)
> Although there is a mechanism to set the log location to the desired 
> directory using env variable ATLAS_LOG_DIR, but by default, the script must 
> try to dump logs in Atlas default logs directory (/var/log/atlas)
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ATLAS-3911) UI: Type system management

2020-09-22 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ATLAS-3911?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17199964#comment-17199964
 ] 

ASF subversion and git services commented on ATLAS-3911:


Commit b8956dfd00b788ef90b79612a36669f5c6106855 in atlas's branch 
refs/heads/dependabot/npm_and_yarn/dashboardv2/bootstrap-3.4.1 from Keval Bhatt
[ https://gitbox.apache.org/repos/asf?p=atlas.git;h=b8956df ]

ATLAS-3911: UI: Type system managment


> UI: Type system management
> --
>
> Key: ATLAS-3911
> URL: https://issues.apache.org/jira/browse/ATLAS-3911
> Project: Atlas
>  Issue Type: Improvement
>Reporter: Keval Bhatt
>Assignee: Keval Bhatt
>Priority: Major
> Fix For: 3.0.0, 2.2.0
>
> Attachments: ATLAS-3911-1.patch, ATLAS-3911-2.patch, 
> ATLAS-3911.patch, Type_System_Tree.png, Type_System_Tree_Details.png
>
>
> !Type_System_Tree.png|width=482,height=237!
>  
> !Type_System_Tree_Details.png|width=509,height=249!



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ATLAS-3948) Entity Creation: Index Consistency: Java Patch Handler: Provide Option to Disable

2020-09-22 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ATLAS-3948?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17199959#comment-17199959
 ] 

ASF subversion and git services commented on ATLAS-3948:


Commit eccc37623e7c3d43e1aa494f88a5ad155fe9c123 in atlas's branch 
refs/heads/dependabot/npm_and_yarn/dashboardv2/bootstrap-3.4.1 from Ashutosh 
Mestry
[ https://gitbox.apache.org/repos/asf?p=atlas.git;h=eccc376 ]

ATLAS-3948: Entity Creation: Index Consistency: Java Patch Handler: Provide 
Option to Disable


> Entity Creation: Index Consistency: Java Patch Handler: Provide Option to 
> Disable
> -
>
> Key: ATLAS-3948
> URL: https://issues.apache.org/jira/browse/ATLAS-3948
> Project: Atlas
>  Issue Type: Bug
>Reporter: Ashutosh Mestry
>Assignee: Ashutosh Mestry
>Priority: Major
> Attachments: ATLAS-3948-index-consistency-conditional.patch
>
>
> *Background*
> The ATLAS-3907 provided ability to apply index consistency to existing 
> indexes via Java patch handler.
> However, when _atlas.graph.storage.consistency-lock.enabled=false_ this patch 
> still gets applied.
> *Solution*
> Check for the property in Java patch handler and avoid applying it if the 
> property is set to false.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ATLAS-3946) Filter TypeDefs in Metrics API and show data accordingly

2020-09-22 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ATLAS-3946?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17199962#comment-17199962
 ] 

ASF subversion and git services commented on ATLAS-3946:


Commit 4bc1c04adeba25254fce924e318c26fc9b72a8dd in atlas's branch 
refs/heads/dependabot/npm_and_yarn/dashboardv2/bootstrap-3.4.1 from Nixon 
Rodrigues
[ https://gitbox.apache.org/repos/asf?p=atlas.git;h=4bc1c04 ]

ATLAS-3946 : Filter TypeDefs in Metrics API and show types data accordingly


> Filter TypeDefs in Metrics API and show data accordingly
> 
>
> Key: ATLAS-3946
> URL: https://issues.apache.org/jira/browse/ATLAS-3946
> Project: Atlas
>  Issue Type: Improvement
>Reporter: Nixon Rodrigues
>Assignee: Nixon Rodrigues
>Priority: Major
>
> Filter TypeDefs in Metrics API and show data accordingly, currently data is 
> shown for all types even if user do not have access to those types.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ATLAS-3934) Dockerfile should build from local repository rather than pulling code from git

2020-09-22 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ATLAS-3934?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17199961#comment-17199961
 ] 

ASF subversion and git services commented on ATLAS-3934:


Commit 9b1d4c387fb56d08bfc86150b0cff7d071540109 in atlas's branch 
refs/heads/dependabot/npm_and_yarn/dashboardv2/bootstrap-3.4.1 from Madhan 
Neethiraj
[ https://gitbox.apache.org/repos/asf?p=atlas.git;h=9b1d4c3 ]

ATLAS-3934: docker scripts to build and run Apache Atlas in containers


> Dockerfile should build from local repository rather than pulling code from 
> git
> ---
>
> Key: ATLAS-3934
> URL: https://issues.apache.org/jira/browse/ATLAS-3934
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 2.1.0
>Reporter: Syed Atif Akhtar
>Assignee: Madhan Neethiraj
>Priority: Trivial
>  Labels: atlas, build, development_environment, docker
> Fix For: 3.0.0, 2.2.0
>
> Attachments: ATLAS-3934.patch
>
>
> *Expected Behaviour:*
>  When a developer wants to test out their changes using the dockerfile in dev 
> support, they should be able to create the dockerfile with atlas built and 
> mount from a local directory with the changes they have done.
> *Current Behaviour:*
> The dockerfile currently defined in dev-support pulls the source code from 
> git instead of building the code that the user has defined
>  
> {code:java}
> RUN git clone https://github.com/apache/atlas.git -b master{code}
>  
> *Suggestion:*
>  Maintain separate dockerfiles for publishing an image of Atlas vs development



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ATLAS-3945) UI: Entity details page, Show N/A for date if date value is 0 or null

2020-09-22 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ATLAS-3945?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17199956#comment-17199956
 ] 

ASF subversion and git services commented on ATLAS-3945:


Commit e6c382680d1a3fa3284b5c9a9026264fc5bd3957 in atlas's branch 
refs/heads/dependabot/npm_and_yarn/dashboardv2/bootstrap-3.4.1 from Keval Bhatt
[ https://gitbox.apache.org/repos/asf?p=atlas.git;h=e6c3826 ]

ATLAS-3945: UI: Entity details page, Show N/A for date if date value is 0 or 
null

Signed-off-by: Nikhil Bonte 


> UI: Entity details page,  Show N/A for date if date value is 0 or null
> --
>
> Key: ATLAS-3945
> URL: https://issues.apache.org/jira/browse/ATLAS-3945
> Project: Atlas
>  Issue Type: Bug
>Reporter: Keval Bhatt
>Assignee: Keval Bhatt
>Priority: Major
> Fix For: 3.0.0, 2.2.0
>
> Attachments: ATLAS-3945.patch
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ATLAS-3827) UI: Use moment date format instead of default date format.

2020-09-22 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ATLAS-3827?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17199957#comment-17199957
 ] 

ASF subversion and git services commented on ATLAS-3827:


Commit ee80e6a675317f15a99429d509ffd49670d5df0d in atlas's branch 
refs/heads/dependabot/npm_and_yarn/dashboardv2/bootstrap-3.4.1 from Keval Bhatt
[ https://gitbox.apache.org/repos/asf?p=atlas.git;h=ee80e6a ]

ATLAS-3827: UI: Use moment date format instead of default date format.

Signed-off-by: Nikhil Bonte 


> UI: Use moment date format instead of default date format.
> --
>
> Key: ATLAS-3827
> URL: https://issues.apache.org/jira/browse/ATLAS-3827
> Project: Atlas
>  Issue Type: Improvement
>Reporter: Keval Bhatt
>Assignee: Keval Bhatt
>Priority: Major
> Fix For: 3.0.0, 2.2.0
>
> Attachments: ATLAS-3827-1.patch, ATLAS-3827.patch, 
> image-2020-09-16-17-11-33-386.png, image-2020-09-16-17-12-04-512.png, 
> new_date_format.png
>
>
>  
> UI configured to use the following date formats:
> {code:java}
>  /MM/DD
>  /MM/DD HH:mm:ss
>  MM/DD/ h:mm A z
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ATLAS-3911) UI: Type system management

2020-09-22 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ATLAS-3911?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17199965#comment-17199965
 ] 

ASF subversion and git services commented on ATLAS-3911:


Commit c71ba1e851564993377c8156f90e47b5b3f471b0 in atlas's branch 
refs/heads/branch-2.0 from Keval Bhatt
[ https://gitbox.apache.org/repos/asf?p=atlas.git;h=c71ba1e ]

ATLAS-3911: UI: Type system managment

(cherry picked from commit b8956dfd00b788ef90b79612a36669f5c6106855)


> UI: Type system management
> --
>
> Key: ATLAS-3911
> URL: https://issues.apache.org/jira/browse/ATLAS-3911
> Project: Atlas
>  Issue Type: Improvement
>Reporter: Keval Bhatt
>Assignee: Keval Bhatt
>Priority: Major
> Fix For: 3.0.0, 2.2.0
>
> Attachments: ATLAS-3911-1.patch, ATLAS-3911-2.patch, 
> ATLAS-3911.patch, Type_System_Tree.png, Type_System_Tree_Details.png
>
>
> !Type_System_Tree.png|width=482,height=237!
>  
> !Type_System_Tree_Details.png|width=509,height=249!



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ATLAS-3939) Add build profile for berkeleydb-solr

2020-09-22 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ATLAS-3939?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17199960#comment-17199960
 ] 

ASF subversion and git services commented on ATLAS-3939:


Commit 7690e51d10f008c1e13a4c85f9aa8821fee33f4a in atlas's branch 
refs/heads/dependabot/npm_and_yarn/dashboardv2/bootstrap-3.4.1 from Madhan 
Neethiraj
[ https://gitbox.apache.org/repos/asf?p=atlas.git;h=7690e51 ]

ATLAS-3939: added profile berkeley-solr


> Add build profile for berkeleydb-solr
> -
>
> Key: ATLAS-3939
> URL: https://issues.apache.org/jira/browse/ATLAS-3939
> Project: Atlas
>  Issue Type: Improvement
>  Components:  atlas-core
>Reporter: Madhan Neethiraj
>Assignee: Madhan Neethiraj
>Priority: Major
> Fix For: 3.0.0, 2.2.0
>
> Attachments: ATLAS-3939.patch
>
>
> Atlas supports a number of build profiles, like 
> external-hbase-sol/embedded-hbase-solr/embedded-cassandra-solr/berkeley-elasticsearch,
>  for various combinations of backend stores an index stores. This should be 
> extended to support berkeley-solr as well; this profile can be useful for 
> dev/testing of Atlas.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ATLAS-3911) UI: Type system management

2020-09-22 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ATLAS-3911?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17199954#comment-17199954
 ] 

ASF subversion and git services commented on ATLAS-3911:


Commit b8956dfd00b788ef90b79612a36669f5c6106855 in atlas's branch 
refs/heads/master from Keval Bhatt
[ https://gitbox.apache.org/repos/asf?p=atlas.git;h=b8956df ]

ATLAS-3911: UI: Type system managment


> UI: Type system management
> --
>
> Key: ATLAS-3911
> URL: https://issues.apache.org/jira/browse/ATLAS-3911
> Project: Atlas
>  Issue Type: Improvement
>Reporter: Keval Bhatt
>Assignee: Keval Bhatt
>Priority: Major
> Fix For: 3.0.0, 2.2.0
>
> Attachments: ATLAS-3911-1.patch, ATLAS-3911-2.patch, 
> ATLAS-3911.patch, Type_System_Tree.png, Type_System_Tree_Details.png
>
>
> !Type_System_Tree.png|width=482,height=237!
>  
> !Type_System_Tree_Details.png|width=509,height=249!



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ATLAS-3911) UI: Type system management

2020-09-22 Thread Nixon Rodrigues (Jira)


[ 
https://issues.apache.org/jira/browse/ATLAS-3911?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17199949#comment-17199949
 ] 

Nixon Rodrigues commented on ATLAS-3911:


+1 for the patch, [~kevalbhatt] thanks

> UI: Type system management
> --
>
> Key: ATLAS-3911
> URL: https://issues.apache.org/jira/browse/ATLAS-3911
> Project: Atlas
>  Issue Type: Improvement
>Reporter: Keval Bhatt
>Assignee: Keval Bhatt
>Priority: Major
> Fix For: 3.0.0, 2.2.0
>
> Attachments: ATLAS-3911-1.patch, ATLAS-3911-2.patch, 
> ATLAS-3911.patch, Type_System_Tree.png, Type_System_Tree_Details.png
>
>
> !Type_System_Tree.png|width=482,height=237!
>  
> !Type_System_Tree_Details.png|width=509,height=249!



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (ATLAS-3911) UI: Type system management

2020-09-22 Thread Keval Bhatt (Jira)


 [ 
https://issues.apache.org/jira/browse/ATLAS-3911?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Keval Bhatt updated ATLAS-3911:
---
Attachment: ATLAS-3911-2.patch

> UI: Type system management
> --
>
> Key: ATLAS-3911
> URL: https://issues.apache.org/jira/browse/ATLAS-3911
> Project: Atlas
>  Issue Type: Improvement
>Reporter: Keval Bhatt
>Assignee: Keval Bhatt
>Priority: Major
> Fix For: 3.0.0, 2.2.0
>
> Attachments: ATLAS-3911-1.patch, ATLAS-3911-2.patch, 
> ATLAS-3911.patch, Type_System_Tree.png, Type_System_Tree_Details.png
>
>
> !Type_System_Tree.png|width=482,height=237!
>  
> !Type_System_Tree_Details.png|width=509,height=249!



--
This message was sent by Atlassian Jira
(v8.3.4#803005)