I use Loopback Framework to create several services and I use an api gateway (tyk) to manage them.
Unfortunately I do not see how to set the access control for each of them.
I do not want a user to access data that does not belong to him.
Many thanks,
you can easily use two methods to secure your model.
1.From model.json file
inside your model model.json you can include ACL objects.
2.Using operational hooks in model.js file you can use operational hooks to manipulate security.
example
hope this will be helpful.