invite groups to space with javascript?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2010 02:04 PM
Would anyone know how to invite groups to a space programmatically with javascript?
Labels:
- Labels:
-
Archive
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2010 09:56 AM
This seems to be the way:
var folderNode = companyhome.childByNamePath(path_to_user_folder);
folderNode.setPermission("Contributor", groupNode);
http://forums.alfresco.com/en/viewtopic.php?f=36&t=17354
var folderNode = companyhome.childByNamePath(path_to_user_folder);
folderNode.setPermission("Contributor", groupNode);
http://forums.alfresco.com/en/viewtopic.php?f=36&t=17354
