Dan Schultzer

Results 190 comments of Dan Schultzer

Yeah, that makes sense. > Linking the records with a user through a foreign key would be nice, especially because if you delete a user, it cleans up the sessions...

> If I understand correctly `Pow.Plug.delete_user/2` is not for the case when an admin want to delete another user.... Correct, it's only when the user deletes the current user signed...

It's discussed here: https://github.com/danschultzer/pow/issues/66 (and also in https://github.com/danschultzer/pow/issues/323) The suggested approach won't work as the session is deleted before it reaches `Pow.Plug.RequireAuthenticated`. This kind of logic is outside the scope...

A WebAuthn library that could be tested with: https://github.com/tanguilp/wax

WebAuthn standard has been finalized by W3C! We should consider a pure single factor Webauthn registration/authentication process where user id and password is not required (or user id is the...

From [the elixirforum](https://elixirforum.com/t/pow-robust-modular-extendable-user-authentication-and-management-system/15807/82?u=danschultzer), there's a question on multiple user id field authentication: > I’m just a bit curious. ^^ > Is it possible (or could it be) to pass a...

I don't mind using a library to do the heavy lifting at all, but I don't plan to add any more dependencies to Pow so it would have to be...

Yeah. I've been too busy, but now with [API integration guide](https://github.com/danschultzer/pow/pull/247) and [out-of-the-box distributed Mnesia](https://github.com/danschultzer/pow/pull/233) released soon, I believe this is probably the next thing I'll take a dig at...

For sure. If you can share the code, I would be happy to see how you solved it (maybe gist or repo)!

There's a much simpler way, as the `registration_path/2` calls [the callback routes module](https://hexdocs.pm/pow/1.0.20/README.html#callback-routes). You can create a custom routes module and then just use your registration path: ```elixir defmodule MyAppWeb.Pow.Routes...