mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 06:26:57 +00:00
change whiteboard to be disable by default
Signed-off-by: Simon L. <szaimen@e.mail.de>
This commit is contained in:
parent
eb31220606
commit
0320569260
1 changed files with 3 additions and 3 deletions
|
|
@ -164,10 +164,10 @@ class ConfigurationManager
|
||||||
|
|
||||||
public function isWhiteboardEnabled() : bool {
|
public function isWhiteboardEnabled() : bool {
|
||||||
$config = $this->GetConfig();
|
$config = $this->GetConfig();
|
||||||
if (isset($config['isWhiteboardEnabled']) && $config['isWhiteboardEnabled'] === 0) {
|
if (isset($config['isWhiteboardEnabled']) && $config['isWhiteboardEnabled'] === 1) {
|
||||||
return false;
|
|
||||||
} else {
|
|
||||||
return true;
|
return true;
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue