Josh Steiner
Josh Steiner
Currently, `Doorman.authenticate/2` is hardcoded to find the user by an email field. This is the only thing in the library that depends on it, and it would nice to have...
As of Postgres 11, [it is safe](https://www.2ndquadrant.com/en/blog/add-new-table-column-default-value-postgresql-11/) to add new column with a default value. I think we could add a conditional here and skip this check if the database...
We might be able to use this for `elm-native-ui` instead of all the finagling we have to do now. https://github.com/eeue56/elm-proper-install
It seems like for local logging to work you need to also include an instrumenter in your schema. This isn't mentioned in [the documentation](https://github.com/chatterbugapp/cacheql#logging). I'm not using Scout, but I...
Just looking at the code, it doesn't appear to be thread safe.
It seems to me that `use_cassette` should default to using the options `match_requests_on: [:query, :request_body]`. If you are submitting different data, it's likely that the server will respond differently. `exvcr`...
Awesome library @nsweeting! Thanks for making this. It would be cool if you could sort by an attribute on an associated object. For example, sort `Post`s by their `Author`'s name....