summaryrefslogtreecommitdiffstats
path: root/appinfo
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-08-24 13:39:17 +0200
committerJoas Schilling <coding@schilljs.com>2020-08-25 08:47:09 +0200
commitf1269e0b3ba574febf3a54dab4769915cc70291f (patch)
tree26a15a2c3ecd1ac263907514287dd3ee8006a15b /appinfo
parent1c8004f5f4b543da474c1260ba0f077e02923ec2 (diff)
settings routes before conversation specific ones
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/routes.php40
1 files changed, 19 insertions, 21 deletions
diff --git a/appinfo/routes.php b/appinfo/routes.php
index eac1b85bd..933bd1650 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -363,6 +363,25 @@ return [
],
],
+ /**
+ * Bridge settings
+ */
+ [
+ 'name' => 'BridgeSettings#stopAllBridges',
+ 'url' => '/api/{apiVersion}/bridge',
+ 'verb' => 'DELETE',
+ 'requirements' => [
+ 'apiVersion' => 'v1',
+ ],
+ ],
+ [
+ 'name' => 'BridgeSettings#getMatterbridgeVersion',
+ 'url' => '/api/{apiVersion}/bridge/version',
+ 'verb' => 'GET',
+ 'requirements' => [
+ 'apiVersion' => 'v1',
+ ],
+ ],
/**
* Bridges
@@ -396,27 +415,6 @@ return [
],
/**
- * Bridge settings
- */
- [
- 'name' => 'BridgeSettings#stopAllBridges',
- 'url' => '/api/{apiVersion}/bridge',
- 'verb' => 'DELETE',
- 'requirements' => [
- 'apiVersion' => 'v1',
- ],
- ],
- [
- 'name' => 'BridgeSettings#getMatterbridgeVersion',
- 'url' => '/api/{apiVersion}/bridge/version',
- 'verb' => 'GET',
- 'requirements' => [
- 'apiVersion' => 'v1',
- ],
- ],
-
-
- /**
* PublicShareAuth
*/
[