Add f7push webhook for support replies and ticket deep links.

OCS endpoint for support.f7cloud.ru, notification notifier, and ?ticket= URL opening in the client UI.
This commit is contained in:
root
2026-05-24 12:30:02 +03:00
parent 92df667d78
commit dc299709f7
10 changed files with 332 additions and 21 deletions
+1 -1
View File
@@ -4,7 +4,7 @@
<name>f7support</name>
<summary>Support ticket client for F7cloud (F7cloud-compatible)</summary>
<description>f7support client app for creating and viewing support tickets.</description>
<version>0.1.8</version>
<version>0.1.9</version>
<licence>AGPL</licence>
<author>f7support team</author>
<namespace>F7Support</namespace>
+11 -4
View File
@@ -1,8 +1,15 @@
<?php
return [
'routes' => [
['name' => 'page#index', 'url' => '/', 'verb' => 'GET'],
],
'routes' => [
['name' => 'page#index', 'url' => '/', 'verb' => 'GET'],
],
'ocs' => [
[
'name' => 'push_api#notify',
'url' => '/api/v{version}/push',
'verb' => 'POST',
'requirements' => ['version' => '1'],
],
],
];