mirror of
https://github.com/chenasraf/nextcloud-autocurrency.git
synced 2026-05-18 09:39:03 +00:00
- Add GitHub Actions workflows for PHPUnit testing (MySQL and PostgreSQL) - Add issue templates (bug reports, feature requests) for better issue management - Enhance Makefile with Docker test support and improved build targets - Update lint-staged configuration with better PHP and JSON handling - Add comprehensive PHPUnit test infrastructure with Docker support - Update dependencies and add lock files for composer and vendor-bin tools - Improve code scaffolding templates (command, component, view generators) - Update build configuration (Vite, package.json, pnpm-lock.yaml) - Refactor Application.php settings initialization - Update AdminSettings and UserSettings implementations - Rename test file for consistency (ApiTest → ApiControllerTest) - Update .gitignore (track composer.lock, ignore stats.html)
13 lines
315 B
PHP
13 lines
315 B
PHP
<?php
|
|
|
|
use OCA\AutoCurrency\AppInfo\Application;
|
|
use OCP\Util;
|
|
|
|
/* @var array $_ */
|
|
$script = $_['script'];
|
|
$style = $_['style'];
|
|
Util::addScript(Application::APP_ID, Application::JS_DIR . "/$script");
|
|
Util::addStyle(Application::APP_ID, Application::CSS_DIR . "/$style");
|
|
?>
|
|
<div id="autocurrency-settings"></div>
|