1. Can a community be deleted if there are non-empty collections in it
(items are owned by collections in the community)?

2. Can a community be deleted if there are only empty collections in it?

3. Can a collection be deleted if there are items in it (owned by the
collection)?

4. What could be the reason to allow to the community admin to delete
subcommunities but not to delete collections?


for COMMUNITIES - in
org.dspace.app.xmlui.aspect.administrative.community.EditCommunityMetadataForm:

if (AuthorizeManager.authorizeActionBoolean(context, thisCommunity,
Constants.DELETE))
{
    buttonList.addButton("submit_delete").setValue(T_submit_delete);
}

for COLLECTIONS - in
org.dspace.app.xmlui.aspect.administrative.collection.EditCollectionMetadataForm:

//Only System Admins can Delete Collections
if (AuthorizeManager.isAdmin(context))
{
    buttonList.addButton("submit_delete").setValue(T_submit_delete);
}

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.

Reply via email to