E. Lynette Rayle
E. Lynette Rayle
We are touching the queries shared spec for Issue #775. The changes we are making use the a_member_of attribute. There will be quite a bit of overlap between the resolution...
For filtering, we need two classes that have the same dummy property from parent to child and a second dummy property from child to parent. This allows multiple results with...
I run QA tests using the following steps… * clone * bundle * create engine cart app - `bundle exec rake engine_cart:generate` * run tests - `bundle exec rspec` I...
There has been discussion about moving ldpath out of labs into samvera. I haven't had time to shepherd that process, but would like to see it promoted.
Is .ordered_members the preferred method that should be encouraged over .members? There are inconsistencies in the functioning of the in_\* methods. Examples assume c1, c2 are collections w1, w2 are...
It makes sense for #in_works and #in_collections to use members instead of ordered_members. When going from the contained to the containing items, order is not important.
Thanks for summarizing our discussions so the intention to refactor doesn't get lost.
The configuration yml files associated with the linked data processing side of QA are read in once. See [config/initializers/linked_data_authorities.rb](https://github.com/samvera/questioning_authority/blob/master/config/initializers/linked_data_authorities.rb). This looks in the QA's `config/authorities/linked_data` directory and the same directory...
@geekscruff Can you take a look at this issue and comment on whether or not it still applies? I know there have been changes to the Getty processing since this...
``` # Setup objects parent_work1 = GenericWork.new(id: 'wk1') parent_work2 = GenericWork.new(id: 'wk2') child_work = GenericWork.new(id: 'wk3') # Setup relationships parent_work1.ordered_members = [child_work] parent_work2.ordered_members = [child_work] child_work.save parent_work1.save parent_work2.save # test...