Skip to content

Managing users

Peri edited this page Jan 14, 2023 · 3 revisions

All user related options can be found in the Whitelist.ts file.

Anonymous users

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

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
)

Managing device pools

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.

Clone this wiki locally