This is a best practice question I'm struggling with for a while now.
From a page with search results (accounts that need to be approved), I want to navigate to a page (GET-request) with the id of the account in the querystring, the controller immediately approves the account and returns a view to show the user that the account is succesfully approved.
In all examples I find on the internet, the GET-request is used to get data to show the user and the POST-request is used to modify data. I really like to know if this is bad practice and why I should, or should not to this.