Brylie Christopher Oxley

Results 483 comments of Brylie Christopher Oxley

We are considering Simple REST to build a REST API for our Meteor app, and share concerns around versioning. As noted above, methods, publications, etc might be subject to change,...

> Maintain the ability to auto-document the API between versions. If the schema of the request or response is changing between versions of an API (one of the most likely...

Does your method accept any arguments? It might be that the payload is passed in as an additional argument. Try checking if there is any (additional) argument available by assigning...

You might also look in to the [documentation about `getArgsFromRequest`](https://github.com/stubailo/meteor-rest/blob/master/packages/rest/README.md#available-options).

For clarification, when we try to [initialize the `FileCollection.resumable.on('fileAdded')`](https://github.com/apinf/api-umbrella-dashboard/blob/3d6c51ed23cfbedbfbb45da1cf4c418ec8be6b68/documentation/manage/client/manage.js#L32) callback from within a `Template..onRendered()` callback, we get unexpected results. We are trying to [access the template data context](https://github.com/apinf/api-umbrella-dashboard/blob/3d6c51ed23cfbedbfbb45da1cf4c418ec8be6b68/documentation/manage/client/manage.js#L49) from within...

Thanks. How would we pass the related entity ID to the observe function? E.g. a profile ID related to a profile image file.

For clarification, we are using the `FileCollection.resumable`, which is [initialized in `Meteor.startup`](https://github.com/apinf/api-umbrella-dashboard/blob/be130dba82f215ead3c41cfca6715d5edb238e9f/documentation/view/client/resumable.js#L3-L4), so [we only call insert from within the `resumable.on('fileAdded', ...)`](https://github.com/apinf/api-umbrella-dashboard/blob/be130dba82f215ead3c41cfca6715d5edb238e9f/documentation/view/client/resumable.js#L6). We are actually trying to associate a text...

An ideal situation would be something like the following: 1. we create a template instance variable referencing a `resumable` instance 2. the `resumable` instance is initialized with a FileCollection reference,...

I understand the basic idea/pattern here, and we were able to solve it using a Session variable. The main challenge was that the FileCollection.resumable needed to be defined in Meteor.startup,...

Related issues: #73, #101, #29