cancel
Showing results for 
Search instead for 
Did you mean: 

group evaluator not recognized user with special character

nathanm
Champ in-the-making
Champ in-the-making
HI all,

I have a requirement,
In document library actions myCustomAction should display to particular group of users only (DOCUMENT_CONTROLLER).
I use a custom evaluator to do this. here is my evaluator definition.


<bean id="my.evaluator.doclib.action.isManager" parent="evaluator.doclib.action.groupMembership">
         <property name="relation" value="OR" />
         <property name="groups">
            <list>
               <value>GROUP_ALFRESCO_ADMINISTRATORS</value>
               <value>GROUP_DOCUMENT_CONTROLLER</value>
            </list>
         </property>
   </bean>


this works fine for alfresco administrators group but it doesn't work for document controller group that I created.
any clue where I did wrong??

thanks in advance.

Nathan M.
1 REPLY 1

nathanm
Champ in-the-making
Champ in-the-making
On further exploration the code works well for member of group with no special character.
for example in group DOCUMENT_COMTROLLER I have 2 user, the first one is "JEFF" and the second is "POT T"
user "JEFF" can acces the action meanwhile the user "POT T" can't acces the action.