0 votes
by (750 points)

Hi,

is it possible to authenticate a user against a database while the server is already running? At the moment i have to register a user before the server starts.

Is it possible to change the servers user collection while the server runs so that changes are reflected at runtime? I.e. removing a user at runtime.

Regards
Martin

1 Answer

0 votes
by (144k points)

Hi,

Yes, this is possible - you can change the users collection while the user is running.

Alternatively, for slightly more advanced scenarios, you can easily implement a custom authentication provider that supplies custom authentication logic and bypasses the built-in users collection completely - see Custom authentication provider for details.

...