Welcome to mirror list, hosted at ThFree Co, Russian Federation.

info.xml « appinfo - github.com/nextcloud/registration.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2dd46b991caeb7e47c713817e8482cc48fd00675 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?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>registration</id>
	<name>Registration</name>
	<summary>This app allows users to self-register a new account using their email address.</summary>
	<description><![CDATA[User registration

This app allows users to register a new account.

# Features

- Add users to a given group
- Allow-list with email domains (including wildcard) to register with
- Administrator will be notified via email for new user creation or require approval
- Supports Nextcloud's Client Login Flow v1 and v2 - allowing registration in the mobile Apps and Desktop clients

# Web form registration flow

1. User enters their email address
2. Verification link is sent to the email address
3. User clicks on the verification link
4. User is lead to a form where they can choose their username and password
5. New account is created and is logged in automatically
		]]></description>
	<version>2.0.0</version>
	<licence>agpl</licence>
	<author>Joas Schilling</author>
	<author mail="pellaeon@cnmc.tw" homepage="https://nyllep.wordpress.com/about-2">Pellaeon Lin</author>
	<types>
		<prevent_group_restriction />
	</types>
	<category>security</category>
	<category>tools</category>
	<website>https://github.com/nextcloud/registration</website>
	<bugs>https://github.com/nextcloud/registration/issues</bugs>
	<repository>https://github.com/nextcloud/registration</repository>
	<screenshot>https://raw.githubusercontent.com/nextcloud/registration/master/docs/screenshot.png</screenshot>
	<screenshot>https://raw.githubusercontent.com/nextcloud/registration/master/docs/demo.gif</screenshot>
	<screenshot>https://raw.githubusercontent.com/nextcloud/registration/master/docs/admin-settings.png</screenshot>
	<dependencies>
		<nextcloud min-version="25" max-version="25" />
	</dependencies>
	<background-jobs>
		<job>OCA\Registration\BackgroundJob\ExpireRegistrations</job>
	</background-jobs>
	<settings>
		<admin>OCA\Registration\Settings\RegistrationSettings</admin>
		<admin-section>OCA\Registration\Settings\RegistrationSettingsSection</admin-section>
	</settings>
</info>