pdfdraw/appinfo/app.php
Joachim Bauch 09e38bde61
Vendor JWT dependency.
This allows having other apps provide a global "JWT" which then will not
conflict with the "JWT" in this app.
2023-03-14 15:05:52 +01:00

45 lines
1.5 KiB
PHP

<?php
declare(strict_types=1);
/**
* @copyright Copyright (C) 2018, struktur AG
*
* @author Joachim Bauch <mail@joachim-bauch.de>
*
* @license AGPL-3.0
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* 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
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
namespace OCA\Pdfdraw\AppInfo;
use OCA\Pdfdraw\Capabilities;
use OCP\Util;
Util::addScript('pdfdraw', 'loader');
Util::addStyle('pdfdraw', 'pdfdraw');
if (class_exists('\\OCP\\AppFramework\\Http\\EmptyContentSecurityPolicy')) {
$manager = \OC::$server->getContentSecurityPolicyManager();
$policy = new \OCP\AppFramework\Http\EmptyContentSecurityPolicy();
$policy->addAllowedFrameDomain('blob:');
$manager->addDefaultPolicy($policy);
}
\OC::$server->getCapabilitiesManager()->registerCapability(function() {
return new Capabilities();
});
// Register the composer autoloader for packages shipped by this app
include_once __DIR__ . '/../lib/vendor/autoload.php';