I have added group rules for users that the users can only see their own data but I am facing an error. I have written the following code:
<record id="memes_member_user_rule" model="ir.rule">
<field name="name">For Users</field>
<field name="model_id" ref="model_memes_member"/>
<field name="global" eval="False"/>
<field name="domain_force">[('parent_id.user_id','=',user.id)]</field>
<field name="groups" eval="[(4, ref('memes.group_memes_user'))]"/>
</record>
I am facing the following error:
raise AttributeError(name)
AttributeError: auto_join
I think that your problem is the group name. I think you don´t have to add the ´memes.´ try to keep just ´group_memes_user´.
I am working on group rules also. The code I am using is almost the same as you:
The other differences are that I didn't set global false and the order of groups and domain_force.