Hi, I’m in the middle of a project. When should I add the security module? Do you add the security module at the start of a project or when all apps are created and the project is finished?
Joe
Someone should correct me if I am grossly incorrect about this. In principle, it shouldn’t matter since it inject the code in the pages when security is selected. However, in some cases you might have modules which needs information from the user table, like a member system. In that case your design will require the security to be there from the start so you can expand on the users table and create relationships to it.
True. But I always advise to start it immediately. Only issue not to forget is that you have to synchronize after creating new applications, and you need to manually delete unused. But using the module will force you to test the different roles in your system which could be a burden if you skip that to the end of your project.
Thank you guys so I will implement it ASAP
Joe