Application settings retrieved from the server configuration. Access via NCEngine.getAppSettings.
const result = NCEngine.getAppSettings();if (result.isOk) { const settings = result.data; console.log('Speech to text:', settings.isSpeechToTextEnabled); console.log('Message modifiable minutes:', settings.messageModifiableMinutes);}
Whether the speech-to-text feature is enabled for this application
The number of minutes after sending during which a message can be modified (edited)
Returns a plain object snapshot of public settings (speech-to-text flag, message edit window).
const r = NCEngine.getAppSettings();if (r.isOk) console.log(r.data.toObject());
Application settings retrieved from the server configuration. Access via NCEngine.getAppSettings.