Vulcan/packages/vulcan-lib/lib
Apollinaire fefc21bb2f collection.getParameters handles schema extension for searchable fields
Instead of using `schema` passed when creating the collection, `getParameters` should fetch the schema from `collection.simpleSchema()._schema` to include the fields added with `collection.addField`.

I originally found this when making the `groups` field searchable, with: 
```
Users.addField([
  {
    fieldName: 'groups',
    fieldSchema: {
      type: Array,
      searchable: true,
    },
  },
  {
    fieldName: 'groups.$',
    fieldSchema: {
      type: String,
    },
  },
]);
```
2018-07-23 11:59:22 +02:00
..
client Revert auth.js change since it breaks auth 2018-06-11 10:25:54 +09:00
modules collection.getParameters handles schema extension for searchable fields 2018-07-23 11:59:22 +02:00
server Minor fixes to form, mutators; query, and payments 2018-07-07 18:49:04 +02:00