-
Notifications
You must be signed in to change notification settings - Fork 13
/
routes.php
42 lines (41 loc) · 1.57 KB
/
routes.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
$routes = array(
'/' => 'home',
'/activity' => 'activity',
'/bulk_mail' => 'bulk_mail',
'/bulk_mail/{recipients}' => 'bulk_mail',
'/groups' => 'groups',
'/groups/{group}' => 'group',
'/groups/{group}/members.{format}' => 'group',
'/groups/{group}/access_rules/{access}' => 'access_options',
'/help' => 'help',
'/pubkeys' => 'pubkeys',
'/pubkeys.{format}' => 'pubkeys',
'/pubkeys/{key}' => 'pubkey',
'/pubkeys/{key}.{format}' => 'pubkey',
'/servers' => 'servers',
'/servers.{format}' => 'servers',
'/servers/{hostname}' => 'server',
'/servers/{hostname}/accounts/{account}' => 'serveraccount',
'/servers/{hostname}/accounts/{account}/access_rules/{access}' => 'access_options',
'/servers/{hostname}/accounts/{account}/pubkeys.{format}' => 'serveraccount_pubkeys',
'/servers/{hostname}/accounts/{account}/sync_status' => 'serveraccount_sync_status',
'/servers/{hostname}/status.{format}' => 'server',
'/servers/{hostname}/sync_status' => 'server_sync_status',
'/tools' => 'tools',
'/users' => 'users',
'/users/{username}' => 'user',
'/users/{username}/pubkeys' => 'user_pubkeys',
'/users/{username}/pubkeys.{format}' => 'user_pubkeys',
'/users/{username}/pubkeys/{key}' => 'pubkey',
'/users/{username}/pubkeys/{key}.{format}' => 'pubkey',
);
$public_routes = array(
'/groups/{group}/members.{format}' => true,
'/pubkeys.{format}' => true,
'/pubkeys/{key}.{format}' => true,
'/servers/{hostname}/accounts/{account}/pubkeys.{format}' => true,
'/users/{username}' => true,
'/users/{username}/pubkeys.{format}' => true,
'/users/{username}/pubkeys/{key}.{format}' => true,
);