In the previous chapter, we implemented authentication and authorization in our application and registered a user with admin rights. Now we can get our application completed!
Our application takes blog posts from our CosmosDB and displays them to the user. Right now though, we need to create and edit blog posts inside of the CosmosDB – by manipulating the JSON data directly. That isn’t the most user-friendly way of working – and there is a good chance that we can break something.
In this chapter, we are ...