Dan Schultzer
Dan Schultzer
Idea for resolving #170. Not sure about this one as it seems there will be plenty of edge cases to this. The better way of handling this is probably to...
Discussed in https://github.com/pow-auth/assent/issues/51 it might be good to have an sign in with apple button helper to ease integration.
The Ecto migration mix generator has been lifted from the Ecto library where `on_delete: :nothing` is unfortunately hardcoded: https://github.com/danschultzer/pow/blob/v1.0.20/lib/pow/extension/ecto/schema/migration.ex#L14 In the case of user identities it really should be `on_delete:...
Prompted on the slack channel: > Any hint how to change the providers label to an icon in Pow Assent? Do I have to write my self the tag information...
I would like to see if we can increase success rate with OpenCV before releasing the next version. This will be a full 0.5.0 release. - [ ] Increase success...
This adds the missing features discussed in #30. The rotation and gradient already cause problems for OpenCV preprocessor so it might be a good idea to try to improve the...
Based on https://github.com/danschultzer/pow_assent/issues/89 > So the current implementation of [`PowAssent.HTTPAdapter.Mint`](https://github.com/danschultzer/pow_assent/blob/v0.3.2/lib/pow_assent/http_adapter/mint.ex) doesn't pool HTTP/2 connections. For it to do that, I'll need to set it up as a GenServer. This way...
Ref: https://openid.net/specs/openid-connect-core-1_0.html#SelfIssued Ref: https://elixirforum.com/t/using-openid-connect-in-production-how-to-do-full-security-checks/28331/7 This would require implicit grant flow support. I've tested this a bit and will put up a draft PR soon.
From #28: > I've been looking [into building a CSS lexer and parser](https://andrealeopardi.com/posts/tokenizing-and-parsing-in-elixir-using-leex-and-yecc/), and checked [how Jason](https://github.com/michalmuskala/jason/blob/master/lib/decoder.ex) decodes JSON. > > This ruby library is interesting too: https://github.com/rgrove/crass/blob/master/lib/crass/tokenizer.rb > >...
@LostKobrakai commented on slack that some sensitive information is currently logged in requests in Phoenix, like `client_secret` or `request_path` and should be filtered. I agree, and it may also be...