Case Management – Pages and Actions
In this chapter, we’ll focus on creating the functionality of the frontend of our case management application. This frontend will allow the end user to manage a case for a customer. This could be for an insurance company or law firm, for example, among many other use cases. Each entry in the data model will hold information about a specific case, where you can track the status of and save notes on the case. This should further familiarize you with all the basics that you’ve been taught in the previous chapters. It will be a frontend that will connect to our created data model, the page builder, actions, and interactions for our logic. We will also be using authentication in this frontend. In the previous chapter, we used the Betty Blocks account as the authentication. In this chapter, this will be the web user authentication profile.
This chapter covers the following topics:
- Creating an overview page
- Creating a...