Summary
In this chapter, we finished our case management application. We added authentication to our case management application so that we can log in with a user.
We used the CRUD with slide-out template as a basis for our case management application, so we don’t have to create the whole CRUD flow ourselves, as most of it is already predefined for us. Also, we learned how to unlock and use a wrapper to get around faster in our page template.
We took our first steps into actions in this chapter. We learned how to change the permissions of an action so we can control who launches it. We also went through the basics of actions: what they can do and how we can extend them. We added some extra functionality to our actions, so we can add notes and files to our case, track the history of it, and change our status. Most of this required adding some extra functionality to our action, so you learned how to modify those.
In the next chapter, we’ll go over the pro-coder...