Removing CRUD Authentication

I guys need your help. I want remove user authentication for CRUD. I’m building an application in which I want users to have anonymity and therefore now login required. Could you tell me the changes in code I would need to do in the controller, model and view files.

I would like to post some code, however I just created CRUD operations and therefore have nothing else than default codes.

Thanks…

Read about access control filter more. In general in order to make all operations allowed to the guest users you should remove ‘accessControl’ element from the array which is returned by filters() method of your CRUD controller.