Skip to content

Commit ee8f425

Browse files
authored
Merge pull request #144 from jagerman/blinding-default-on
Make blinding enabled by default
2 parents 3d64cef + 508c434 commit ee8f425

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

conftest.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
from sogs import config
44

55
config.DB_URL = 'defer-init'
6+
config.REQUIRE_BLIND_KEYS = False
67

78
from sogs import web # noqa: E402
89
from sogs.model.room import Room # noqa: E402

sogs/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
ALPHABET_FILTERS = set()
3636
ALPHABET_SILENT = True
3737
FILTER_MODS = False
38-
REQUIRE_BLIND_KEYS = False
38+
REQUIRE_BLIND_KEYS = True
3939
TEMPLATE_PATH = 'templates'
4040
STATIC_PATH = 'static'
4141
UPLOAD_PATH = 'uploads'

0 commit comments

Comments
 (0)