initial commit

This commit is contained in:
2024-07-28 17:57:30 +02:00
commit 51655a94f3
12 changed files with 318 additions and 0 deletions

21
appinfo/info.xml Normal file
View File

@ -0,0 +1,21 @@
<?xml version="1.0"?>
<info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
<id>pride_flags</id>
<name>Pride Flags</name>
<summary>Add pride flags to your nextcloud</summary>
<description><![CDATA[Diversity and inclusion are what makes the world worth living in! Let&#39;s show some pride!]]></description>
<version>0.1.2</version>
<licence>cnvpl</licence>
<author mail="" homepage="https://github.com/finallycoffee/nextcloud-pride"></author>
<namespace>PrideFlags</namespace>
<category>customization</category>
<bugs>https://github.com/finallycoffee/nextcloud-pride/issues</bugs>
<dependencies>
<nextcloud min-version="26" max-version="28"/>
</dependencies>
<settings>
<personal-section>OCA\PrideFlags\Settings\PersonalSection</personal-section>
<personal>OCA\PrideFlags\Settings\PersonalSettings</personal>
</settings>
</info>

8
appinfo/routes.php Normal file
View File

@ -0,0 +1,8 @@
<?
return [
'routes' => [
['name' => 'settings#get', 'url' => '/settings', 'verb' => 'GET'],
['name' => 'settings#set', 'url' => '/settings', 'verb' => 'POST'],
]
];