-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathroutes.php
40 lines (38 loc) · 1.31 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
<?php
$routes = array(
'/' => 'profiles',
'/activity' => 'activity',
'/certificates' => 'certificates',
'/certificates.{format}' => 'certificates',
'/certificates/{name}' => 'certificate',
'/certificates/{name}/format.{format}' => 'certificate',
'/crypt.js' => 'crypt',
'/help' => 'help',
'/profiles' => 'profiles',
'/profiles.{format}' => 'profiles',
'/profiles/{name}' => 'profile',
'/profiles/{name}/format.{format}' => 'profile',
'/servers' => 'servers',
'/servers.{format}' => 'servers',
'/servers/{hostname}' => 'server',
'/servers/{hostname}/format.{format}' => 'server',
'/servers/{hostname}/sync_status' => 'server_sync_status',
'/services' => 'services',
'/services.{format}' => 'services',
'/services/{name}' => 'service',
'/services/{name}/format.{format}' => 'service',
'/services/{service}/variables' => 'variables',
'/services/{service}/variables.{format}' => 'variables',
'/services/{service}/variables/{name}' => 'variable',
'/services/{service}/variables/{name}/format.{format}' => 'variable',
'/scripts' => 'scripts',
'/scripts.{format}' => 'scripts',
'/scripts/{name}' => 'script',
'/scripts/{name}/format.{format}' => 'script',
'/users' => 'users',
'/users.{format}' => 'users',
'/users/{username}' => 'user',
'/users/{username}/format.{format}' => 'user',
);
$public_routes = array(
);