-
Notifications
You must be signed in to change notification settings - Fork 3
Managing users
All user related options can be found in the Whitelist.ts file.
To configure whether anonymous users can log in, set the AllowAnonymousAccess
variable.
There is also a pool of devices anonymous users can access - AnonymousPermitedDevices
. Authenticated users will also be able to access these devices.
Additional pools can be added for anonymous users in the MakeAnonUser
function.
Authenticated users are created in the createWhitelist
function.
Simply add these entries to the list:
makeUserSync(
'Username',
'password', // this is hashed, but it is plaintext in source code. currently you can not precompute the hash
...devicePools
)
When you create devices, or an integration such as buttplug.io does, they will usually be added to a pool. You can and should use it to give access to specific devices to specific users.
If you want to curate a list of devices, use CreatePool<Device>
to make a pool and add specific devices to it,
then give access to it to a user.