Scott Werner

Results 19 comments of Scott Werner

I recommend submitting your pull request at https://github.com/mike-north/ember-cli-document-title until the owner of this repo responds.

You can pass the `prefix` in the [schema's context attribute](https://marshmallow.readthedocs.io/en/latest/extending.html#using-context). The relationship field inherits the context from the parent schema which was fixed in `marshmallow-jsonapi==0.19.0`. ```python class CommentSchema(Schema): id =...

I posted a workaround at https://github.com/marshmallow-code/marshmallow-jsonapi/issues/96#issuecomment-371975056, however, this should be implemented. **Requirements**: https://jsonapi.org/format/#fetching-pagination - To paginate the primary data, supply pagination links in the top-level `links` object. To paginate an...

@Leo-G See https://marshmallow.readthedocs.io/en/latest/quickstart.html#ordering-output.

Thought this was working but it is not, we need to pass `ordered` argument to `SchemaOpts`. I can work on a pull request when the marshmallow 3.0 changes are finalized.

See #91. ```handlebars {{#x-select value=model.realEstate.content as |xs|}} {{#each model.residentialComplexes as |option|}} {{#xs.option value=option}}{{option.name}}{{/xs.option}} {{/each}} {{/x-select}} ```

@meliborn I forgot to add `action=(action (mut model.realEstate.residentialComplex))`. I created ember-twiddle at [emberx-select: Doesn't work with RSVP hash #180](https://ember-twiddle.com/44adc07e6427577c83145a1c1728a965?openFiles=templates.application.hbs%2C). > I thought .content for relationships. I am new to Ember...

I was still able to get it to work when removing `belongsTo` and changing it to `residentialComplexId: attr('string')`, check out the updated [ember-twiddle](https://canary.ember-twiddle.com/44adc07e6427577c83145a1c1728a965). Note the changes to `{{#x-select ...}`.

Currently generating `ORDER BY` using [L() expression](http://doug-martin.github.io/goqu/docs/expressions.html): ```go db.From("users").Order(goqu.L("lower(name)").Asc()) ```

I do not think this is possible as it looks like each driver backend requires credentials.