Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a38f1600 authored by Akhil's avatar Akhil 🙂
Browse files

Dev/shop delete config

parent b9746ae7
Loading
Loading
Loading
Loading

.eslintrc.js

0 → 100644
+5 −0
Original line number Diff line number Diff line
module.exports = {
        extends: [
                '@nextcloud'
        ]
};

.gitignore

0 → 100644
+26 −0
Original line number Diff line number Diff line
.DS_Store
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln

.marginalia

build/
coverage/
vendor/
js/

translationtool.phar
.php-cs-fixer.cache
.phpunit.result.cache
junit.xml
.php-cs-fixer.dist.php
+5 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@
    <description><![CDATA[in /e/OS cloud, nextcloud accounts are linked to mail accounts. This app ensures both are coordinated: it sets the e-mail address, quota and storage of the user upon creation.
    It also completes the account deletion by cleaning other parts of the /e/OS cloud setup to ensure no more data is retained when a user requests an account deletion.
    This app uses the UserDeletedEvent to invoke scripts in the docker-welcome container of /e/OS cloud setup]]></description>
    <version>2.1.1</version>
    <version>2.2.0</version>
    <licence>agpl</licence>
    <author mail="dev@e.email" homepage="https://gitlab.e.foundation/">Akhil Potukuchi</author>
    <namespace>EcloudAccounts</namespace>
@@ -19,4 +19,8 @@
    <dependencies>
        <nextcloud min-version="21" max-version="23"/>
    </dependencies>
	<settings>
		<personal>OCA\EcloudAccounts\Settings\Personal</personal>
	</settings>
	
</info>
+3 −0
Original line number Diff line number Diff line
@@ -4,6 +4,9 @@ return ['routes' => [
    ['name' => 'user#set_account_data', 'url' => '/api/set_account_data', 'verb' => 'POST'],
    ['name' => 'user#user_exists', 'url' => '/api/user_exists', 'verb' => 'POST'],
    ['name' => 'user#set_mail_quota_usage', 'url' => '/api/set_mail_quota_usage', 'verb' => 'POST'],
    ['name' => 'shop_account#set_shop_email_post_delete', 'url' => '/shop-accounts/set_shop_email_post_delete', 'verb' => 'POST' ],
    ['name' => 'shop_account#set_shop_delete_preference', 'url' => '/shop-accounts/set_shop_delete_preference', 'verb' => 'POST' ],
    ['name' => 'shop_account#get_order_info', 'url' => '/shop-accounts/order_info', 'verb' => 'GET'],
    [
        'name' => 'user#preflighted_cors', 'url' => '/api/{path}',
        'verb' => 'OPTIONS', 'requirements' => array('path' => '.+')

babel.config.js

0 → 100644
+11 −0
Original line number Diff line number Diff line
module.exports = {
	plugins: ['@babel/plugin-syntax-dynamic-import'],
	presets: [
		[
			'@babel/preset-env',
			{
				modules: false
			}
		]
	]
}
Loading