Hi all,
I might need your advise on this.
I’ve been working on an web app and I’m wondering how to turn it into a api based application.
What’s the best practice?
imagin I have a articles resource
do I create a articles controller with empty actions, then an api::articles_controller which will take care of the data computations, and then from my views call the api to get the data in json format so I can use angular for example on the frontend?
How would you implemente it?
Thanks for your contribution