Vulcan/packages/vulcan-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
..
lib collection.getParameters handles schema extension for searchable fields 2018-07-23 11:59:22 +02:00
package.js v1.11.2 2018-06-16 08:57:45 +09:00
README.md Telescope -> Vulcan 2017-06-13 00:16:52 -07:00

Vulcan libraries package, used internally.