Class: DynamicConfig

Constructors

constructor

new DynamicConfig(): DynamicConfig

Returns

DynamicConfig

Properties

allowNewUsers

allowNewUsers: boolean

Controls new user registration.

When an unknown user successfully authenticates through SSO, they are registered and a new user is created within nestjs-clone-bay, if this is set to true. Authentication allowlists must still be satisfied.

Disabling new user registration does not prevent users from registering alts.

Default: true

Defined in

lib/src/config/dynamic-config.model.ts:29open in new window


allowedAlliances

allowedAlliances: number[]

Defined in

lib/src/config/dynamic-config.model.ts:14open in new window


allowedCharacters

allowedCharacters: number[]

Defined in

lib/src/config/dynamic-config.model.ts:8open in new window


allowedCorporations

allowedCorporations: number[]

Defined in

lib/src/config/dynamic-config.model.ts:11open in new window


applyAllowlistsToExistingUsers

applyAllowlistsToExistingUsers: boolean

Controls whether authentication allowlists are applied to existing users.

Turning this OFF effectively makes the authentication allowlists filter who can register as a new user.

When this is ON, the restriction will also be imposed on local logins, not only on SSO authentication. However, this is applied only on the main character, possible alts are not checked.

Default: false

Defined in

lib/src/config/dynamic-config.model.ts:44open in new window