Dan Schultzer

Results 190 comments of Dan Schultzer

You'll need to [update the foreign key constraint](https://hexdocs.pm/ecto_sql/Ecto.Migration.html#references/2) so the associations will be deleted, like: ```elixir add :application_id, references(:oauth_applications, on_delete: :delete_all, type: binary_id) ``` By default ExOauth2Provider just adds `on_delete:...

Yeah that's slow, but that's not a bad thing. I believe it's the hashing algorithm. Argon2 recommends that hashing should take 0.5s. Libsodium recommends one second. This is necessary to...

I kinda want to change naming to `Tailwind.install_tailwind_and_run/2` instead or maybe call two separate functions in the tailwind install mix task. This PR was just to make the most minimal...

Pushed a second commit that separates tailwind install and writing to files in assets. I think this is better, but wdyt @chrismccord? Any reason to also write to files when...

I agree, adding that option is the best solution. It won't break any existing setup 👍 Though from my personal experience working with SSL in elixir, I do think that...

Work has been brutal so I haven't had a chance to check up on this before now. Thanks for your patience @Francesco-Lanciana. > 1. Why is there no off the...

> What's a match spec and why is that the case? It's erlang match spec: http://erlang.org/doc/apps/erts/match_spec.html I use that because it's standard erlang, and very performant. The alternative is to...

#563 has been fixed, though it's a config option you have to turn on, 1.1.0 will have it turned on by default 😄

Yeah, this is the last piece missing in the Pow core: #6 After auth flow can be set easily then I believe the Pow core is feature complete. Personally I...

@Tmw Good question. I would either remove `use Pow.Ecto.Schema` or delete `:pow_fields` module attribute, depending what works better for your case. #### Remove `use Pow.Ecto.Schema` You have to add `pow_user_id_field...