This commit is contained in:
the-djmaze 2022-11-15 12:12:01 +01:00
parent 901e45d672
commit 4a0a6c80fc
44 changed files with 52 additions and 3 deletions

View file

@ -32,6 +32,7 @@ export const SettingsUserStore = new class {
requestDsn: 0,
pgpSign: 0,
pgpEncrypt: 0,
allowSpellcheck: 0,
layout: 1,
editorDefaultType: 'Html',
@ -92,5 +93,6 @@ export const SettingsUserStore = new class {
self.requestDsn(SettingsGet('requestDsn'));
self.pgpSign(SettingsGet('pgpSign'));
self.pgpEncrypt(SettingsGet('pgpEncrypt'));
self.allowSpellcheck(SettingsGet('allowSpellcheck'));
}
};