|
| 1 | +<?xml version="1.0"?> |
| 2 | +<info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd"> |
| 4 | + <id>activity</id> |
| 5 | + <name>Activity</name> |
| 6 | + <summary>This application enables users to view actions related to their files in Nextcloud.</summary> |
| 7 | + <description> |
| 8 | + This application enables users to view actions related to their files in Nextcloud. |
| 9 | + Once enabled, users will see a new icon “Activity” in their apps menu. |
| 10 | + When clicked, a new page appears for users to track the activity related to files – from new files, to deleted files, move, rename, updates and shared activity. |
| 11 | + The user can configure their individual activity settings in their personal menu. |
| 12 | + This sets the type of activity to record, as well as whether to the user sees their own activities, |
| 13 | + whether these are only available online, and whether they get an email digest on a regular basis. |
| 14 | + More information is available in the Activity documentation. |
| 15 | + </description> |
| 16 | + |
| 17 | + <version>2.9.0</version> |
| 18 | + <licence>agpl</licence> |
| 19 | + <author>Frank Karlitschek</author> |
| 20 | + <author>Joas Schilling</author> |
| 21 | + |
| 22 | + <default_enable/> |
| 23 | + <types> |
| 24 | + <filesystem/> |
| 25 | + </types> |
| 26 | + |
| 27 | + <documentation> |
| 28 | + <admin>https://docs.nextcloud.org/server/14/admin_manual/configuration_server/activity_configuration.html</admin> |
| 29 | + </documentation> |
| 30 | + |
| 31 | + <category>monitoring</category> |
| 32 | + <category>social</category> |
| 33 | + |
| 34 | + <website>https://github.com/nextcloud/activity/</website> |
| 35 | + <bugs>https://github.com/nextcloud/activity/issues</bugs> |
| 36 | + <repository>https://github.com/nextcloud/activity.git</repository> |
| 37 | + |
| 38 | + <dependencies> |
| 39 | + <nextcloud min-version="16" max-version="16"/> |
| 40 | + </dependencies> |
| 41 | + |
| 42 | + <background-jobs> |
| 43 | + <job>OCA\Activity\BackgroundJob\EmailNotification</job> |
| 44 | + <job>OCA\Activity\BackgroundJob\ExpireActivities</job> |
| 45 | + </background-jobs> |
| 46 | + |
| 47 | + <commands> |
| 48 | + <command>OCA\Activity\Command\SendEmails</command> |
| 49 | + </commands> |
| 50 | + |
| 51 | + <settings> |
| 52 | + <admin>OCA\Activity\Settings\Admin</admin> |
| 53 | + <admin-section>OCA\Activity\Settings\AdminSection</admin-section> |
| 54 | + <personal>OCA\Activity\Settings\Personal</personal> |
| 55 | + <personal-section>OCA\Activity\Settings\PersonalSection</personal-section> |
| 56 | + </settings> |
| 57 | + |
| 58 | + <activity> |
| 59 | + <filters> |
| 60 | + <filter>OCA\Activity\Filter\AllFilter</filter> |
| 61 | + <filter>OCA\Activity\Filter\SelfFilter</filter> |
| 62 | + <filter>OCA\Activity\Filter\ByFilter</filter> |
| 63 | + </filters> |
| 64 | + </activity> |
| 65 | + |
| 66 | + <navigations> |
| 67 | + <navigation> |
| 68 | + <name>Activity</name> |
| 69 | + <route>activity.Activities.showList</route> |
| 70 | + <icon>activity.svg</icon> |
| 71 | + <order>1</order> |
| 72 | + </navigation> |
| 73 | + <navigation> |
| 74 | + <name>Activity-Test</name> |
| 75 | + <route>activity.Activities.showList</route> |
| 76 | + <icon>activity.svg</icon> |
| 77 | + <order>2</order> |
| 78 | + </navigation> |
| 79 | + </navigations> |
| 80 | +</info> |
0 commit comments