** (RuntimeError) Resource `MyApp.Budgeting.BookUser` is not accepted by api `MyApp.Authentication` for autogenerated join relationship: `:users_join_assoc`
Relationship was generated by the `many_to_many` relationship `:users`
If the `through` resource `MyApp.Budgeting.BookUser` is not accepted by the same
api as the destination resource `MyApp.Authentication.User`,
then you must define that relationship manually. To define it manually, add the following to your
relationships:
has_many :users_join_assoc, MyApp.Budgeting.BookUser do
# configure the relationship attributes
...
end
You can use a name other than `:users_join_assoc`, but if you do, make sure to
add that to `:users`, i.e
many_to_many :users_join_assoc, MyApp.Budgeting.BookUser do
...
join_relationship_name :your_new_name
end
** (RuntimeError) Resource `MyApp.Budgeting.BookUser` is not accepted by api `MyApp.Authentication` for autogenerated join relationship: `:users_join_assoc`
Relationship was generated by the `many_to_many` relationship `:users`
If the `through` resource `MyApp.Budgeting.BookUser` is not accepted by the same
api as the destination resource `MyApp.Authentication.User`,
then you must define that relationship manually. To define it manually, add the following to your
relationships:
has_many :users_join_assoc, MyApp.Budgeting.BookUser do
# configure the relationship attributes
...
end
You can use a name other than `:users_join_assoc`, but if you do, make sure to
add that to `:users`, i.e
many_to_many :users_join_assoc, MyApp.Budgeting.BookUser do
...
join_relationship_name :your_new_name
end