enh(dashboard): changed h1 to say Dashboard instead of Nextcloud

Signed-off-by: Eduardo Morales <emoral435@gmail.com>
pull/42413/head
Eduardo Morales 2023-12-19 10:01:21 +07:00 committed by backportbot-nextcloud[bot]
parent 42dee2e29f
commit 4628000ca2
1 changed files with 7 additions and 0 deletions

@ -10,6 +10,7 @@ declare(strict_types=1);
* @author Morris Jobke <hey@morrisjobke.de>
* @author Roeland Jago Douma <roeland@famdouma.nl>
* @author Kate Döen <kate.doeen@nextcloud.com>
* @author Eduardo Morales <eduardo.morales@nextcloud.com>
*
* @license GNU AGPL version 3 or any later version
*
@ -43,6 +44,7 @@ use OCP\Dashboard\RegisterWidgetEvent;
use OCP\EventDispatcher\IEventDispatcher;
use OCP\IConfig;
use OCP\IRequest;
use OCP\IL10N;
#[IgnoreOpenAPI]
class DashboardController extends Controller {
@ -55,6 +57,8 @@ class DashboardController extends Controller {
private $dashboardManager;
/** @var IConfig */
private $config;
/** @var IL10N */
private $l10n;
/** @var string */
private $userId;
@ -65,6 +69,7 @@ class DashboardController extends Controller {
IEventDispatcher $eventDispatcher,
IManager $dashboardManager,
IConfig $config,
IL10N $l10n,
$userId
) {
parent::__construct($appName, $request);
@ -73,6 +78,7 @@ class DashboardController extends Controller {
$this->eventDispatcher = $eventDispatcher;
$this->dashboardManager = $dashboardManager;
$this->config = $config;
$this->l10n = $l10n;
$this->userId = $userId;
}
@ -117,6 +123,7 @@ class DashboardController extends Controller {
$response = new TemplateResponse('dashboard', 'index', [
'id-app-content' => '#app-dashboard',
'id-app-navigation' => null,
'pageTitle' => $this->l10n->t('Dashboard'),
]);
// For the weather widget we should allow the geolocation