Matthew Dias
Matthew Dias
yep, kitsu api url has changed. api docs: http://docs.kitsu.apiary.io
could do something like this maybe http://www.javascriptsource.com/cookies/remove-ads.html
Any updates on this?
I can't install libpythonqt-qt5 or screencloud from the repo, they aren't being found. In fact the repo seems to be down, visiting in the browser gives a 404.
I got a message from an iOS user awhile ago that looked like this. The actual message was just very long, but in English. I'm inclined to think it's not...
Yeah that's pretty annoying, would like to fix it at some point.
Ah yep my bad forgot to note it uses this branch. https://github.com/hummingbird-me/kitsu-server/tree/nuck/nolt-sso Will get that updated to relocate the token in the graphql schema
Relationship filtering and comparative operators out of the box sounds 👌 to me. We'll need to maintain the functionality of specifying which filters are allowed. Maybe configurable for the related...
I just ended up creating the following middleware: ``` this.jsonApi.insertMiddlewareBefore('axios-request', { name: 'ignore-null-params', req: (payload) => { if (payload.req.params) { Object.entries(payload.req.params).forEach(([key, value]) => { if (!value) { delete payload.req.params[key] }...
Basically it makes logic for including params dynamically easier. Example: https://github.com/matthewdias/kitsu-slack/blob/master/src/kitsu.js#L321 What I've noticed is that sending null actually just appends an empty string, so currently without this middleware, this...