Yuki Nishijima

Results 116 comments of Yuki Nishijima

FCM wraps the APN and thus we have to follow FCM's specification. You could find how to specify `apns-priority` [here](https://firebase.google.com/docs/cloud-messaging/http-server-ref) (find the doc for the `priority` key). > On iOS,...

@daemonsy what are you referring to by "constance redefinition errors"? Could you post examples here?

Interesting. At least in development Artemis should auto-load the constants on every request when a GraphQL file is updated. How are you running your test suite? Do you add the...

The `#preload!` method, as the name implies, is not supposed to be called multiple times and I'm a bit hesitant to add workarounds for unintended cases. You should just use...

Thanks for all the contributions you've made @JanStevens! I'll add your adapter to README. I also wasn't aware of the fact that the HMAC authentication could be abstracted the way...

Right now there isn't a great way to capture raw HTTP request/response, but I'm happy to add a hook that looks like: ```ruby class YourClient < Artemis::Client before_request do |headers,...

Thanks @orta - I'll look into that to see if a library could set it up easily.

Oh interesting, I was not aware of the fact that relative paths could be sent. I'll have to familiarize myself with Web Push though (I've only used APN and FCM),...

Absolutely! Pushing is designed to be able to send request to multiple [platforms](https://github.com/yuki24/pushing/blob/master/lib/pushing/platforms.rb) using [the adapter pattern](https://github.com/yuki24/pushing/blob/master/lib/pushing/adapters.rb#L7-L12). Theoretically it should be possible to add support for other services OneSignal or...

This PR should probably be merged after https://github.com/zorab47/active_admin-sortable_tree/pull/79 is merged.