-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathinfo.xml
83 lines (65 loc) · 2.36 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
83
<?xml version="1.0"?>
<!--
- SPDX-FileCopyrightText: 2015-2024 Nextcloud GmbH and Nextcloud contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
<id>announcementcenter</id>
<name>Announcement center</name>
<summary><![CDATA[This app allows admins to post announcements.]]></summary>
<description><![CDATA[Announce your maintenance window 🎛️, introduce a new colleague 👤 or make sure everyone knows about the big event next month 📅
🖌️ Markdown support
📑 Comments including @-mentions
👪 Group permissions
⭕ Dashboard integration
⚡ Activities integration
🔔 Notifications integration]]></description>
<version>7.1.0</version>
<licence>agpl</licence>
<author>Joas Schilling</author>
<namespace>AnnouncementCenter</namespace>
<types>
<logging/>
</types>
<category>tools</category>
<website>https://github.com/nextcloud/announcementcenter</website>
<bugs>https://github.com/nextcloud/announcementcenter/issues</bugs>
<repository>https://github.com/nextcloud/announcementcenter.git</repository>
<screenshot>https://github.com/nextcloud/announcementcenter/raw/main/docs/AnnouncementCenterFrontpage.png</screenshot>
<dependencies>
<nextcloud min-version="30" max-version="31" />
</dependencies>
<background-jobs>
<job>OCA\AnnouncementCenter\AnnouncementSchedulerJob</job>
</background-jobs>
<repair-steps>
<post-migration>
<step>OCA\AnnouncementCenter\Migration\AnnouncementsGroupsLinks</step>
</post-migration>
</repair-steps>
<commands>
<command>OCA\AnnouncementCenter\Command\Announce</command>
<command>OCA\AnnouncementCenter\Command\AnnouncementList</command>
<command>OCA\AnnouncementCenter\Command\AnnouncementDelete</command>
<command>OCA\AnnouncementCenter\Command\RemoveNotifications</command>
</commands>
<settings>
<admin>OCA\AnnouncementCenter\Settings\Admin</admin>
</settings>
<activity>
<settings>
<setting>OCA\AnnouncementCenter\Activity\Setting</setting>
</settings>
<providers>
<provider>OCA\AnnouncementCenter\Activity\Provider</provider>
</providers>
</activity>
<navigations>
<navigation>
<name>Announcements</name>
<route>announcementcenter.page.index</route>
<order>10</order>
</navigation>
</navigations>
</info>