cancel
Showing results for 
Search instead for 
Did you mean: 

Check if user is a site admin in share side webscript

Pravesh
Champ on-the-rise
Champ on-the-rise

How to check if user is a site admin in share side webscript? I need this so admins are able to view certain features.

1 ACCEPTED ANSWER

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
}

View answer in original post

3 REPLIES 3

kaynezhang
World-Class Innovator
World-Class Innovator

Try

if (user.properties["alfUserGroups"].indexOf("GROUP_SITE_ADMINISTRATORS") != -1)
{
	//do something
}

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
}

kaynezhang
World-Class Innovator
World-Class Innovator

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