-
Notifications
You must be signed in to change notification settings - Fork 73
/
info.xml
82 lines (82 loc) · 3.48 KB
/
info.xml
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<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>7.2.1</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="8.0"/>
<nextcloud min-version="27" max-version="30"/>
</dependencies>
<activity>
<providers>
<provider>OCA\Polls\Provider\ActivityProvider</provider>
</providers>
<filters>
<filter>OCA\Polls\Filter\ActivityFilter</filter>
</filters>
</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\Purge</command>
<command>OCA\Polls\Command\Db\RemoveIndices</command>
<command>OCA\Polls\Command\Db\Rebuild</command>
<command>OCA\Polls\Command\Db\CreateIndices</command>
<command>OCA\Polls\Command\Db\CleanMigrations</command>
<command>OCA\Polls\Command\Db\ResetWatch</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\RepairSteps\RemoveObsoleteMigrations</step>
<step>OCA\Polls\Migration\RepairSteps\RemoveIndices</step>
</pre-migration>
<post-migration>
<step>OCA\Polls\Migration\RepairSteps\DropOrphanedTables</step>
<step>OCA\Polls\Migration\RepairSteps\DropOrphanedColumns</step>
<step>OCA\Polls\Migration\RepairSteps\UpdateHashes</step>
<step>OCA\Polls\Migration\RepairSteps\DeleteInvalidRecords</step>
<step>OCA\Polls\Migration\RepairSteps\CreateIndices</step>
</post-migration>
<install>
<step>OCA\Polls\Migration\RepairSteps\Install</step>
</install>
</repair-steps>
<navigations>
<navigation>
<name>Polls</name>
<route>polls.page.index</route>
<icon>app.svg</icon>
<order>77</order>
</navigation>
</navigations>
</info>