diff options
author | Christian S <christian@pix-art.de> | 2016-03-04 10:41:32 +0100 |
---|---|---|
committer | Christian S <christian@pix-art.de> | 2016-03-04 10:41:32 +0100 |
commit | 251c27328b7812f6f01a4c8f7215fdd51af84b7e (patch) | |
tree | 84dec0297527a31ac038baf6bb48a3014e3471dd /src | |
parent | ae4d9260ea1ae83a1ef59b179ae785b9adaacc36 (diff) |
allow users to edit settings and accounts
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/eu/siacs/conversations/Config.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/eu/siacs/conversations/Config.java b/src/main/java/eu/siacs/conversations/Config.java index 2bd0967c9..947708279 100644 --- a/src/main/java/eu/siacs/conversations/Config.java +++ b/src/main/java/eu/siacs/conversations/Config.java @@ -39,7 +39,7 @@ public final class Config { public static final String DOMAIN_LOCK = "pix-art.de"; //only allow account creation for this domain public static final String CONFERENCE_DOMAIN_LOCK = null; //only allow conference creation for this domain public static final boolean LOCK_DOMAINS_IN_CONVERSATIONS = false; //only add contacts and conferences for own domains - public static final boolean LOCK_SETTINGS = true; //set to true to disallow account and settings editing + public static final boolean LOCK_SETTINGS = false; //set to true to disallow account and settings editing public static final boolean DISALLOW_REGISTRATION_IN_UI = false; //hide the register checkbox @@ -77,7 +77,7 @@ public final class Config { public static final int MESSAGE_MERGE_WINDOW = 20; - public static final int PAGE_SIZE = 50; + public static final int PAGE_SIZE = 20; public static final int MAX_NUM_PAGES = 3; public static final int REFRESH_UI_INTERVAL = 500; |