Create add_* methods for objects with a many-to many-relationship
Objects with a many-to-one relationship have an add_object method for adding the type of object on the "many" end of the relationship to the list of values within the type of object on the "one" end of the relationship. Objects with a many-to-many relationship, however, are lacking these methods.
For example: two objects, Set and Tag, have a many-to-many relationship. The Set object should have an add_tag method and the Tag method should have an add_set method.
Change History
(4)
Resolution: |
→ wontfix
|
Status: |
assigned → closed
|
What you've described is already possible, although not in a single line (which is, I guess, what you're after). Because it's already possible, I'm marking this as a wontfix for now, in the name of keeping the API as small as possible.