Skip to content

Commit

Permalink
fixup! feat: mail provider settings
Browse files Browse the repository at this point in the history
Signed-off-by: SebastianKrupinski <[email protected]>
  • Loading branch information
SebastianKrupinski committed Oct 7, 2024
1 parent 23b3824 commit 293cc53
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions apps/settings/lib/Listener/SystemMailSettingsListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Settings\Listener;
Expand All @@ -18,7 +18,7 @@
class SystemMailSettingsListener implements IEventListener {

public function __construct(
private IAppConfig $config
private IAppConfig $config,
) {
}

Expand Down
6 changes: 3 additions & 3 deletions apps/settings/lib/Settings/Admin/SystemMail.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Settings\Settings\Admin;
Expand All @@ -14,14 +14,14 @@
class SystemMail implements IDeclarativeSettingsForm {

public function __construct(
private IL10N $l
private IL10N $l,
) {
}

public function getSchema(): array {
return [
'id' => 'mail-provider-support',
'priority' => 11,
'priority' => 10,
'section_type' => DeclarativeSettingsTypes::SECTION_TYPE_ADMIN,
'section_id' => 'server',
'storage_type' => DeclarativeSettingsTypes::STORAGE_TYPE_EXTERNAL,
Expand Down

0 comments on commit 293cc53

Please sign in to comment.