-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathinfo.xml
More file actions
78 lines (67 loc) · 2.52 KB
/
info.xml
File metadata and controls
78 lines (67 loc) · 2.52 KB
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
<?xml version="1.0"?>
<!--
- SPDX-FileCopyrightText: 2016 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>activity</id>
<name>Activity</name>
<summary>This application enables people to view a log of activities about them, their files or other data.</summary>
<description>
This app allows people to see actions related to their files and data in Nextcloud.
Each person can configure their individual activity settings in the personal settings,
to choose which activity should be pushed to mobile phones, sent via email
or whether a daily summary is sent each morning.
More information is available in the Activity documentation.
</description>
<version>5.0.0-dev.0</version>
<licence>agpl</licence>
<author>Frank Karlitschek</author>
<author>Joas Schilling</author>
<author>Ferdinand Thiessen</author>
<default_enable />
<types>
<filesystem />
</types>
<documentation>
<admin>https://docs.nextcloud.com/server/stable/admin_manual/configuration_server/activity_configuration.html</admin>
</documentation>
<category>monitoring</category>
<category>social</category>
<website>https://github.com/nextcloud/activity/</website>
<bugs>https://github.com/nextcloud/activity/issues</bugs>
<repository>https://github.com/nextcloud/activity.git</repository>
<dependencies>
<nextcloud min-version="32" max-version="32" />
</dependencies>
<background-jobs>
<job>OCA\Activity\BackgroundJob\EmailNotification</job>
<job>OCA\Activity\BackgroundJob\ExpireActivities</job>
<job>OCA\Activity\BackgroundJob\DigestMail</job>
<job>OCA\Activity\BackgroundJob\RemoveFormerActivitySettings</job>
</background-jobs>
<commands>
<command>OCA\Activity\Command\SendEmails</command>
</commands>
<settings>
<admin>OCA\Activity\Settings\Admin</admin>
<admin-section>OCA\Activity\Settings\AdminSection</admin-section>
<personal>OCA\Activity\Settings\Personal</personal>
<personal-section>OCA\Activity\Settings\PersonalSection</personal-section>
</settings>
<activity>
<filters>
<filter>OCA\Activity\Filter\AllFilter</filter>
<filter>OCA\Activity\Filter\SelfFilter</filter>
<filter>OCA\Activity\Filter\ByFilter</filter>
</filters>
</activity>
<navigations>
<navigation>
<name>Activity</name>
<route>activity.Activities.index</route>
<icon>activity.svg</icon>
<order>1</order>
</navigation>
</navigations>
</info>