mirror of
https://github.com/nextcloud/ocsms.git
synced 2026-08-22 13:53:00 +00:00
Add a basic FTS provider, for the future
This commit is contained in:
+4
-1
@@ -22,9 +22,12 @@
|
|||||||
<repository type="git">https://github.com/nextcloud/ocsms</repository>
|
<repository type="git">https://github.com/nextcloud/ocsms</repository>
|
||||||
<screenshot small-thumbnail="https://raw.githubusercontent.com/nextcloud/ocsms/master/appinfo/screenshots/1-small.png">https://raw.githubusercontent.com/nextcloud/ocsms/master/appinfo/screenshots/1.png</screenshot>
|
<screenshot small-thumbnail="https://raw.githubusercontent.com/nextcloud/ocsms/master/appinfo/screenshots/1-small.png">https://raw.githubusercontent.com/nextcloud/ocsms/master/appinfo/screenshots/1.png</screenshot>
|
||||||
|
|
||||||
|
<fulltextsearch>
|
||||||
|
<provider>OCA\OcSms\Provider\FullTextSearchProvider</provider>
|
||||||
|
</fulltextsearch>
|
||||||
<repair-steps>
|
<repair-steps>
|
||||||
<post-migration>
|
<post-migration>
|
||||||
<step>OCA\OcSms\Migration\FixConversationReadStates</step>
|
<step>OCA\OcSms\Migration\FixConversationReadStates</step>
|
||||||
</post-migration>
|
</post-migration>
|
||||||
</repair-steps>
|
</repair-steps>
|
||||||
</info>
|
</info>
|
||||||
|
|||||||
@@ -0,0 +1,8 @@
|
|||||||
|
<?php
|
||||||
|
namespace OCA\YourNameSpace\Provider;
|
||||||
|
|
||||||
|
use OCA\FullTextSearch\IFullTextSearchProvider;
|
||||||
|
|
||||||
|
class MyProvider implements IFullTextSearchProvider {
|
||||||
|
};
|
||||||
|
?>
|
||||||
Reference in New Issue
Block a user