forked from Smileupps/couchapp-chatty
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrewrites.json
More file actions
84 lines (82 loc) · 1.63 KB
/
rewrites.json
File metadata and controls
84 lines (82 loc) · 1.63 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[
{
"method":"GET",
"from" : "/:configsecret/:site/_session",
"to" : "../../../_session"
},
{
"method":"DELETE",
"from" : "/:configsecret/:site/_session",
"to" : "../../../_session"
},
{
"method": "GET",
"from" : "/:configsecret/:site/owndocs/:k/0",
"to": "_list/own_docs_list/own_docs_view",
"query": {
"startkey": [
":k",
{
}
],
"endkey": [
":k"
],
"reduce":"false",
"descending": "true",
"include_docs": "true"
}
},
{
"method" : "GET",
"from" : "/:configsecret/:site/owndocs/:k/:since",
"to" : "../../_changes",
"query" : {
"filter":"chatty/own_docs_filter",
"style":"all_docs",
"include_docs":"true",
"timeout":"25000",
"feed":"longpoll",
"limit":"50"
}
},
{
"method" : "GET",
"from" : "/:configsecret/:site/allprofiles",
"to" : "_view/allprofiles",
"query" : {
"include_docs":"true",
"reduce":"false"
}
},
{
"method":"GET",
"from" : "/:configsecret/:site/common/*",
"to" : "common/*"
},
{
"method":"GET",
"from" : "/:configsecret/:site/fonts/*",
"to" : "common/fonts/*"
},
{
"method":"GET",
"from" : "/:configsecret/:site/*",
"to" : ":site/*"
},
{
"method":"GET",
"from" : "/:configsecret/:site",
"to" : ":site/index.html"
},
{
"method":"PUT",
"from" : "/:configsecret/:site/:action/:docid",
"to" : "_update/put/:docid"
},
{
"method":"PUT",
"from" : "/:configsecret/:site/:action",
"to" : "_update/put"
}
]