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
There's nothing to warn about misconfiguration and typos. One of the most annoying examples - wrong reference name that doesn't show up until you try to create compound resource.
app.resource('user', {
addresses: [{ref: 'addresses'}] //This will throw an error as there's no 'addresses' resource
});
app.resource('address', {
user: {ref: 'user'}
});
The text was updated successfully, but these errors were encountered:
There's nothing to warn about misconfiguration and typos. One of the most annoying examples - wrong reference name that doesn't show up until you try to create compound resource.
The text was updated successfully, but these errors were encountered: