-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19075 from nextcloud/feature/contact-interaction-…
…event Collect recent contact interactions
- Loading branch information
Showing
32 changed files
with
1,968 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* @copyright 2020 Christoph Wurst <[email protected]> | ||
* | ||
* @author 2020 Christoph Wurst <[email protected]> | ||
* | ||
* @license GNU AGPL version 3 or any later version | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as | ||
* published by the Free Software Foundation, either version 3 of the | ||
* License, or (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
\OC::$server->query(\OCA\ContactsInteraction\AppInfo\Application::class); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?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>contactsinteraction</id> | ||
<name>Contacts Interaction</name> | ||
<summary>Manages interaction between users and contacts</summary> | ||
<description>Collect data about user and contacts interactions and provide an address book for the data</description> | ||
<version>1.0.0</version> | ||
<licence>agpl</licence> | ||
<author>Christoph Wurst</author> | ||
<namespace>ContactsInteraction</namespace> | ||
<types> | ||
<dav/> | ||
</types> | ||
<default_enable/> | ||
<category>integration</category> | ||
<category>social</category> | ||
<bugs>https://github.com/nextcloud/server/issues</bugs> | ||
<dependencies> | ||
<nextcloud min-version="19" max-version="19"/> | ||
</dependencies> | ||
<background-jobs> | ||
<job>OCA\ContactsInteraction\BackgroundJob\CleanupJob</job> | ||
</background-jobs> | ||
<sabre> | ||
<address-book-plugins> | ||
<plugin>OCA\ContactsInteraction\AddressBookProvider</plugin> | ||
</address-book-plugins> | ||
</sabre> | ||
</info> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?php | ||
|
||
// autoload.php @generated by Composer | ||
|
||
require_once __DIR__ . '/composer/autoload_real.php'; | ||
|
||
return ComposerAutoloaderInitContactsInteraction::getLoader(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"config" : { | ||
"vendor-dir": ".", | ||
"optimize-autoloader": true, | ||
"classmap-authoritative": true, | ||
"autoloader-suffix": "ContactsInteraction" | ||
}, | ||
"autoload" : { | ||
"psr-4": { | ||
"OCA\\ContactsInteraction\\": "../lib/" | ||
} | ||
} | ||
} |
Oops, something went wrong.