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

info.xml « appinfo - github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7147a3b5115a9caf7363180f7d374f88f7af6e60 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?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>polls</id>
    <name>Polls</name>
    <summary>A polls app, similar to Doodle/Dudle with the possibility to restrict access.</summary>
    <description>A polls app, similar to Doodle/Dudle with the possibility to restrict access (members, certain groups/users, hidden and public).</description>
    <version>4.0.0</version>
    <licence>agpl</licence>
    <author>Vinzenz Rosenkranz</author>
    <author>René Gieling</author>
    <author>Kai Schröer</author>
    <documentation>
        <admin>https://github.com/nextcloud/polls/blob/master/README.md</admin>
    </documentation>
    <category>tools</category>
    <category>social</category>
    <category>organization</category>
    <website>https://github.com/nextcloud/polls</website>
    <bugs>https://github.com/nextcloud/polls/issues</bugs>
    <repository type="git">https://github.com/nextcloud/polls.git</repository>
    <screenshot>https://raw.githubusercontent.com/nextcloud/polls/master/screenshots/overview.png</screenshot>
    <screenshot>https://raw.githubusercontent.com/nextcloud/polls/master/screenshots/vote.png</screenshot>
    <screenshot>https://raw.githubusercontent.com/nextcloud/polls/master/screenshots/edit-poll.png</screenshot>
    <dependencies>
        <php min-version="7.4"/>
        <nextcloud min-version="25" max-version="25" />
    </dependencies>
    <activity>
		<providers>
			<provider>OCA\Polls\Provider\ActivityProvider</provider>
		</providers>
	</activity>
    <background-jobs>
        <job>OCA\Polls\Cron\NotificationCron</job>
        <job>OCA\Polls\Cron\JanitorCron</job>
        <job>OCA\Polls\Cron\AutoReminderCron</job>
    </background-jobs>
    <commands>
        <command>OCA\Polls\Command\Share\Add</command>
        <command>OCA\Polls\Command\Share\Remove</command>
        <command>OCA\Polls\Command\Db\Rebuild</command>
        <command>OCA\Polls\Command\Poll\TransferOwnership</command>
    </commands>
    <settings>
        <admin-section>OCA\Polls\Settings\AdminSection</admin-section>
        <personal-section>OCA\Polls\Settings\PersonalSection</personal-section>
        <admin>OCA\Polls\Settings\AdminSettings</admin>
        <personal>OCA\Polls\Settings\PersonalSettings</personal>
    </settings>
    <repair-steps>
        <pre-migration>
            <step>OCA\Polls\Migration\RemoveIndices</step>
            <step>OCA\Polls\Migration\DeleteInvalidRecords</step>
        </pre-migration>
        <post-migration>
            <step>OCA\Polls\Migration\CreateIndices</step>
        </post-migration>
    </repair-steps>
    <navigations>
        <navigation>
            <name>Polls</name>
            <route>polls.page.index</route>
            <icon>app.svg</icon>
            <order>77</order>
        </navigation>
    </navigations>
</info>