
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-16-2020 06:39 AM
How to check if user is a site admin in share side webscript? I need this so admins are able to view certain features.
- Labels:
-
Alfresco Content Services

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-17-2020 09:23 AM
Is there something that can be used in a ftl file to compare or check for Site Manager permisssion? Likke we can put the outcome of this query in model (e.g model.isAdminQuery = ??? ) and check it in ftl
@kaynezhang wrote:Try
if (user.properties["alfUserGroups"].indexOf("GROUP_SITE_ADMINISTRATORS") != -1) { //do something }
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-16-2020 11:56 AM
Try
if (user.properties["alfUserGroups"].indexOf("GROUP_SITE_ADMINISTRATORS") != -1) { //do something }

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-17-2020 09:23 AM
Is there something that can be used in a ftl file to compare or check for Site Manager permisssion? Likke we can put the outcome of this query in model (e.g model.isAdminQuery = ??? ) and check it in ftl
@kaynezhang wrote:Try
if (user.properties["alfUserGroups"].indexOf("GROUP_SITE_ADMINISTRATORS") != -1) { //do something }
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-17-2020 11:48 PM
I'm sorry I haven't use it in FTL before ,But I thinke you can extend the webscript backend js and put the result of group membership into the returned model, And then use it in ftl
