Dan Schultzer

Results 190 comments of Dan Schultzer

Sorry for the late reply @augnustin! Your solution looks great 💯 I agree that it would be nice to have extensions included in the custom controller guides. It also goes...

This is pretty application specific, but you would likely need something similar to the multitenancy guide: https://hexdocs.pm/pow/1.0.21/multitenancy.html#content As you fetch the tenant in the `conn`, you would then pass that...

Hmm, I haven't tested this, but I think just [calling](https://github.com/danschultzer/pow/blob/master/test/pow/plug/session_test.exs#L165-L169) the session plug should work: ```elixir opts = Pow.Plug.Session.init(otp_app: :my_app) conn = conn |> Pow.Plug.Session.call(opts) |> Pow.Plug.Session.do_create(user, opts) :timer.sleep(100) ```...

@johns10 I've thought about this, and it would be best if the auth logic could be bypassed entirely when not being explicitly tested. How do you check the session in...

@johns10 Since the post to the router call works I think this is a configuration issue. It seems like you are pulling empty pow config values with this bit: ```elixir...

Thanks @joshchernoff! Yeah, documentation is really important, and I feel it's too often neglected in open source libraries. It's understandable since you can only do so much with your free...

Thanks! I've fleshed it out a bit more, but haven't tested it yet.

@cdvv7788 all tested, and pushed to the new https://github.com/pow-auth/pow_demo repo 😄

Yeah, I think a generator would be great to have! For now it's just rebase and force push, not great 😄 Actually I've thought about a generator ever since I...

Great idea. It's actually pretty straight forward. You just need a module that accepted deprecated hashing methods in verify function for `:password_hash_methods`. It could look like this to convert Pow's...