Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2020-07-31 18:22:38 +0300
committerJulius Härtl <jus@bitgrid.net>2020-08-07 15:59:34 +0300
commitbd1b39c3a24d0daa8c7dc95e2d7b65d1604ba54a (patch)
treeb62afe568b22ed4b3c316af011aa4358e1948f58 /lib/Dashboard
parenta7eb164fc4fb9590fef6960e2e9d4816983bb25d (diff)
conversation filtering
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'lib/Dashboard')
-rw-r--r--lib/Dashboard/TalkPanel.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Dashboard/TalkPanel.php b/lib/Dashboard/TalkPanel.php
index a0e8bb8d4..96c1c7be6 100644
--- a/lib/Dashboard/TalkPanel.php
+++ b/lib/Dashboard/TalkPanel.php
@@ -24,6 +24,7 @@
namespace OCA\Talk\Dashboard;
use OCP\IL10N;
+use OCP\Util;
class TalkPanel implements \OCP\Dashboard\IPanel {
@@ -75,6 +76,6 @@ class TalkPanel implements \OCP\Dashboard\IPanel {
* @inheritDoc
*/
public function load(): void {
- \OC_Util::addScript('spreed', 'dashboard');
+ Util::addScript('spreed', 'dashboard');
}
}