If have a Role (eg DocAdmin) for users to access the webtop and upload/manage only documents. Is there an easy way to switch off the Tray on the front end for just users in that role?
Is the Tray bound by the permission to access the Webtop?
Is it perhaps a case of creating a new permission (eg viewTray) and then in _serverSpecificRequestScope.cfm
:
<cfif NOT application.security.checkPermission("viewTray")>
request.bHideContextMenu = true
</cfif>
Cheers
Phil