Browse Source
Merge pull request #8239 from nextcloud/followup/8233/disable-dashboard-widget-with-api
Merge pull request #8239 from nextcloud/followup/8233/disable-dashboard-widget-with-api
Disable the dashboard widget with proper APIpull/8265/head
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 46 deletions
@ -1,37 +0,0 @@ |
|||
<?php |
|||
|
|||
declare(strict_types=1); |
|||
|
|||
/** |
|||
* @copyright Copyright (c) 2022 Joas Schilling <coding@schilljs.com> |
|||
* |
|||
* @author Joas Schilling <coding@schilljs.com> |
|||
* |
|||
* @license AGPL-3.0 |
|||
* |
|||
* This code is free software: you can redistribute it and/or modify |
|||
* it under the terms of the GNU Affero General Public License, version 3, |
|||
* as published by the Free Software Foundation. |
|||
* |
|||
* This program is distributed in the hope that it will be useful, |
|||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
* GNU Affero General Public License for more details. |
|||
* |
|||
* You should have received a copy of the GNU Affero General Public License, version 3, |
|||
* along with this program. If not, see <http://www.gnu.org/licenses/> |
|||
* |
|||
*/ |
|||
namespace OCA\Talk\Exceptions; |
|||
|
|||
use OCP\AppFramework\QueryException; |
|||
use Psr\Container\ContainerExceptionInterface; |
|||
|
|||
/** |
|||
* An exception thrown to bail out of registering Talk modules such as the dashboard widget |
|||
*/ |
|||
class NotAllowedToUseTalkException extends QueryException implements ContainerExceptionInterface { |
|||
public function __construct(int $code = 0, \Throwable $parent = null) { |
|||
parent::__construct('Can not use talk', $code, $parent); |
|||
} |
|||
} |
Write
Preview
Loading…
Cancel
Save
Reference in new issue