You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey, thanks for this library I'm just starting to use it and looks really promising.
One thing that my app has is that is multi-tenant, so most of the api endpoints will return data with a specific scope, in a normal index controller I can do Entity::forOrg(Auth::user()->organization_id) returning only the Entity for the org of the user. What is the best way to do that on the JsonApiController subclasses?
And also when creating this kind of records, I need to set that organization_id column to the value of the user->organization_id, thanks in advance.
The text was updated successfully, but these errors were encountered:
I was able to fix the scope issue using global scopes.
But the other thing I tried setting the organization_id on the Entity::creating event, but that is never fired, looks like the DataObject expects all fields on the attributes key and get an error about 2 fields, one is the org_id that is not sent and the other is a relationship field.
I'm using Ember data to try to make a POST, so the POST looks like:
Hey, thanks for this library I'm just starting to use it and looks really promising.
One thing that my app has is that is multi-tenant, so most of the api endpoints will return data with a specific scope, in a normal index controller I can do Entity::forOrg(Auth::user()->organization_id) returning only the Entity for the org of the user. What is the best way to do that on the JsonApiController subclasses?
And also when creating this kind of records, I need to set that organization_id column to the value of the user->organization_id, thanks in advance.
The text was updated successfully, but these errors were encountered: