-
Notifications
You must be signed in to change notification settings - Fork 4
/
discourse-api.js
514 lines (483 loc) · 21 KB
/
discourse-api.js
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
// https://github.com/discourse/discourse/blob/master/config/routes.rb
module.exports = [
['/404', '/404'],
['/site', '/site'],
['/site/settings', '/site/settings'],
['/site/custom_html', '/site/custom_html'],
['/site/banner', '/site/banner'],
['/site/emoji', '/site/emoji'],
['/site_customizations/:key', '/site_customizations/233'],
['/forums', '/forums'],
['/forums/new', '/forums/new'],
['/forums/:id', '/forums/233'],
['/forums/:id/edit', '/forums/233/edit'],
['/srv/status', '/srv/status'],
['/admin', '/admin'],
['/admin/plugins', '/admin/plugins'],
['/admin/site_settings', '/admin/site_settings'],
['/admin/site_settings/new', '/admin/site_settings/new'],
['/admin/site_settings/:id', '/admin/site_settings/377'],
['/admin/site_settings/:id/edit', '/admin/site_settings/377/edit'],
[
'/admin/site_settings/:id/category/:cid',
'/admin/site_settings/377/category/233'
],
['/admin/reports/:type', '/admin/reports/2333'],
['/admin/groups', '/admin/groups'],
['/admin/groups/new', '/admin/groups/new'],
['/admin/groups/:id', '/admin/groups/610'],
['/admin/groups/:id/edit', '/admin/groups/987/edit'],
[
'/admin/groups/refresh_automatic_groups',
'/admin/groups/refresh_automatic_groups'
],
['/admin/groups/:id/members', '/admin/groups/1024/members'],
// ['/admin/groups/:type', '/admin/groups/javascript'],
// ['/admin/groups/:type/:id', '/admin/groups/language/233'],
['/admin/groups/:id/:tid', '/admin/groups/language/233'],
['/admin/users', '/admin/users'],
['/admin/users/new', '/admin/users/new'],
['/admin/users/:id', '/admin/users/232'],
['/admin/users/:id/edit', '/admin/users/2312/edit'],
['/admin/users/list/:query', '/admin/users/list/keywords'],
['/admin/users/ip-info', '/admin/users/ip-info'],
[
'/admin/users/delete-others-with-same-ip',
'/admin/users/delete-others-with-same-ip'
],
[
'/admin/users/total-others-with-same-ip',
'/admin/users/total-others-with-same-ip'
],
['/admin/users/approve-bulk', '/admin/users/approve-bulk'],
['/admin/users/reject-bulk', '/admin/users/reject-bulk'],
['/admin/users/suspend', '/admin/users/suspend'],
['/admin/users/delete_all_posts', '/admin/users/delete_all_posts'],
['/admin/users/unsuspend', '/admin/users/unsuspend'],
['/admin/users/revoke_admin', '/admin/users/revoke_admin'],
['/admin/users/grant_admin', '/admin/users/grant_admin'],
['/admin/users/generate_api_key', '/admin/users/generate_api_key'],
['/admin/users/revoke_api_key', '/admin/users/revoke_api_key'],
['/admin/users/revoke_moderation', '/admin/users/revoke_moderation'],
['/admin/users/grant_moderation', '/admin/users/grant_moderation'],
['/admin/users/approve', '/admin/users/approve'],
['/admin/users/refresh_browsers', '/admin/users/refresh_browsers'],
['/admin/users/log_out', '/admin/users/log_out'],
['/admin/users/activate', '/admin/users/activate'],
['/admin/users/deactivate', '/admin/users/deactivate'],
['/admin/users/block', '/admin/users/block'],
['/admin/users/unblock', '/admin/users/unblock'],
['/admin/users/trust_level', '/admin/users/trust_level'],
['/admin/users/trust_level_lock', '/admin/users/trust_level_lock'],
['/admin/users/primary_group', '/admin/users/primary_group'],
['/admin/users/groups', '/admin/users/groups'],
['/admin/users/groups/:id', '/admin/users/groups/233'],
['/admin/users/badges', '/admin/users/badges'],
['/admin/users/leader_requirements', '/admin/users/leader_requirements'],
['/admin/users/tl3_requirements', '/admin/users/tl3_requirements'],
['/admin/users/anonymize', '/admin/users/anonymize'],
['/admin/users/sync_sso', '/admin/users/sync_sso'],
['/admin/users/invite_admin', '/admin/users/invite_admin'],
['/admin/impersonate', '/admin/impersonate'],
['/admin/impersonate/new', '/admin/impersonate/new'],
['/admin/impersonate/:id', '/admin/impersonate/2333'],
['/admin/impersonate/:id/edit', '/admin/impersonate/610/edit'],
['/admin/email', '/admin/email'],
['/admin/email/new', '/admin/email/new'],
['/admin/email/:id', '/admin/email/1024'],
['/admin/email/:id/edit', '/admin/email/2048/edit'],
['/admin/email/test', '/admin/email/test'],
['/admin/email/all', '/admin/email/all'],
['/admin/email/sent', '/admin/email/sent'],
['/admin/email/skipped', '/admin/email/skipped'],
['/admin/email/preview-digest', '/admin/email/preview-digest'],
['/admin/logs', '/admin/logs'],
['/admin/logs/staff_action_logs', '/admin/logs/staff_action_logs'],
['/admin/logs/screened_emails', '/admin/logs/screened_emails'],
['/admin/logs/screened_ip_addresses', '/admin/logs/screened_ip_addresses'],
[
'/admin/logs/screened_ip_addresses/new',
'/admin/logs/screened_ip_addresses/new'
],
[
'/admin/logs/screened_ip_addresses/:id',
'/admin/logs/screened_ip_addresses/5555'
],
[
'/admin/logs/screened_ip_addresses/:id/edit',
'/admin/logs/screened_ip_addresses/4444/edit'
],
[
'/admin/logs/screened_ip_addresses/roll_up',
'/admin/logs/screened_ip_addresses/roll_up'
],
['/admin/logs/screened_urls', '/admin/logs/screened_urls'],
['/admin/customize', '/admin/customize'],
['/admin/customize/css_html', '/admin/customize/css_html'],
['/admin/customize/colors', '/admin/customize/colors'],
['/admin/flags', '/admin/flags'],
['/admin/flags/:filter', '/admin/flags/filtertype'],
['/admin/flags/agree/:id', '/admin/flags/agree/21231'],
['/admin/flags/disagree/:id', '/admin/flags/disagree/21231'],
['/admin/flags/defer/:id', '/admin/flags/defer/21231'],
['/admin/site_customizations', '/admin/site_customizations'],
['/admin/site_customizations/new', '/admin/site_customizations/new'],
['/admin/site_customizations/:id', '/admin/site_customizations/223'],
[
'/admin/site_customizations/:id/edit',
'/admin/site_customizations/233/edit'
],
['/admin/customize/site_text', '/admin/customize/site_text'],
['/admin/customize/site_text/new', '/admin/customize/site_text/new'],
['/admin/customize/site_text/:id', '/admin/customize/site_text/233'],
[
'/admin/customize/site_text/:id/edit',
'/admin/customize/site_text/233/edit'
],
['/admin/customize/site_text_types', '/admin/customize/site_text_types'],
[
'/admin/customize/site_text_types/new',
'/admin/customize/site_text_types/new'
],
[
'/admin/customize/site_text_types/:id',
'/admin/customize/site_text_types/233'
],
[
'/admin/customize/site_text_types/:id/edit',
'/admin/customize/site_text_types/233/edit'
],
['/admin/customize/user_fields', '/admin/customize/user_fields'],
['/admin/customize/user_fields/new', '/admin/customize/user_fields/new'],
['/admin/customize/user_fields/:id', '/admin/customize/user_fields/233'],
[
'/admin/customize/user_fields/:id/edit',
'/admin/customize/user_fields/233/edit'
],
['/admin/customize/emojis', '/admin/customize/emojis'],
['/admin/customize/emojis/new', '/admin/customize/emojis/new'],
['/admin/customize/emojis/:id', '/admin/customize/emojis/233'],
['/admin/customize/emojis/:id/edit', '/admin/customize/emojis/233/edit'],
['/admin/color_schemes', '/admin/color_schemes'],
['/admin/color_schemes/new', '/admin/color_schemes/new'],
['/admin/color_schemes/:id', '/admin/color_schemes/233'],
['/admin/color_schemes/:id/edit', '/admin/color_schemes/233/edit'],
['/admin/version_check', '/admin/version_check'],
['/admin/dashboard', '/admin/dashboard'],
['/admin/dashboard/new', '/admin/dashboard/new'],
['/admin/dashboard/:id', '/admin/dashboard/233'],
['/admin/dashboard/:id/edit', '/admin/dashboard/233/edit'],
['/admin/dashboard/problems', '/admin/dashboard/problems'],
['/admin/api', '/admin/api'],
['/admin/api/key', '/admin/api/key'],
['/admin/backups', '/admin/backups'],
['/admin/backups/new', '/admin/backups/new'],
['/admin/backups/restore', '/admin/backups/restore'],
['/admin/backups/logs', '/admin/backups/logs'],
['/admin/backups/status', '/admin/backups/status'],
['/admin/backups/cancel', '/admin/backups/cancel'],
['/admin/backups/rollback', '/admin/backups/rollback'],
['/admin/backups/readonly', '/admin/backups/readonly'],
['/admin/backups/upload', '/admin/backups/upload'],
['/admin/badges', '/admin/badges'],
['/admin/badges/new', '/admin/badges/new'],
['/admin/badges/:id', '/admin/badges/233'],
['/admin/badges/:id/edit', '/admin/badges/233/edit'],
['/admin/badges/types', '/admin/badges/types'],
['/admin/badges/badge_groupings', '/admin/badges/badge_groupings'],
['/admin/badges/preview', '/admin/badges/preview'],
['/admin/memory_stats', '/admin/memory_stats'],
['/admin/dump_heap', '/admin/dump_heap'],
['/email_preferences', '/email_preferences'],
['/email/unsubscribe/:key', '/email/unsubscribe/233'],
['/email/resubscribe/:key', '/email/resubscribe/233'],
['/session', '/session'],
['/session/new', '/session/new'],
['/session/destroy', '/session/destroy'],
['/session/become', '/session/become'],
['/session/forgot_password', '/session/forgot_password'],
['/session/sso', '/session/sso'],
['/session/sso_login', '/session/sso_login'],
['/session/sso_provider', '/session/sso_provider'],
['/session/current', '/session/current'],
['/session/csrf', '/session/csrf'],
['/composer-messages', '/composer-messages'],
['/users', '/users'],
['/users/show', '/users/show'],
['/users/update', '/users/update'],
['/users/destroy', '/users/destroy'],
['/users/check_username', '/users/check_username'],
['/users/is_local_username', '/users/is_local_username'],
['/static', '/static'],
['/static/new', '/static/new'],
['/static/:id', '/static/233'],
['/static/:id/edit', '/static/233/edit'],
['/login', '/login'],
['/password-reset', '/password-reset'],
['/faq', '/faq'],
['/guidelines', '/guidelines'],
['/tos', '/tos'],
['/privacy', '/privacy'],
['/signup', '/signup'],
['/users/toggle-anon', '/users/toggle-anon'],
['/users/read-faq', '/users/read-faq'],
['/users/search/users', '/users/search/users'],
['/users/account-created/', '/users/account-created/'],
['/users/password-reset/:token', '/users/password-reset/233'],
['/users/activate-account/:token', '/users/activate-account/233'],
['/users/authorize-email/:token', '/users/authorize-email/233'],
['/users/hp', '/users/hp'],
// ['/my/*path', '/my/catch-all-path'],
['/user_preferences', '/user_preferences'],
['/users/:username/private-messages', '/users/fundon/private-messages'],
[
'/users/:username/private-messages/:filter',
'/users/fundon/private-messages/system'
],
['/users/:username', '/users/fundon'],
['/users/:username/emails', '/users/fundon/emails'],
['/users/:username/preferences', '/users/fundon/preferences'],
['/users/:username/preferences/email', '/users/fundon/preferences/email'],
[
'/users/:username/preferences/about-me',
'/users/fundon/preferences/about-me'
],
[
'/users/:username/preferences/badge_title',
'/users/fundon/preferences/badge_title'
],
[
'/users/:username/preferences/username',
'/users/fundon/preferences/username'
],
[
'/users/:username/preferences/user_image',
'/users/fundon/preferences/user_image'
],
[
'/users/:username/preferences/avatar/pick',
'/users/fundon/preferences/avatar/pick'
],
[
'/users/:username/preferences/card-badge',
'/users/fundon/preferences/card-badge'
],
['/users/:username/staff-info', '/users/fundon/staff-info'],
['/users/:username/invited', '/users/fundon/invited'],
[
'/users/action/send_activation_email',
'/users/action/send_activation_email'
],
['/users/:username/activity', '/users/fundon/activity'],
['/users/:username/activity/:filter', '/users/fundon/activity/keywords'],
['/users/:username/badges', '/users/fundon/badges'],
['/users/:username/notifications', '/users/fundon/notifications'],
['/users/:username', '/users/fundon'],
['/users/by-external/:external_id', '/users/by-external/cfddream'],
['/users/:username/flagged-posts', '/users/fundon/flagged-posts'],
['/users/:username/deleted-posts', '/users/fundon/deleted-posts'],
['/user-badges/:username', '/user-badges/fundon'],
[
'/user_avatar/:username/refresh_gravatar',
'/user_avatar/fundon/refresh_gravatar'
],
// ['/letter_avatar/:username/:size/:version.png', '/letter_avatar/fundo/40/1.0.1.png'],
// ['/user_avatar/:hostname/:username/:size/:version.png', '/user_avatar/github/fundon/40/v1.png'],
// ['/highlight-js/:hostname/:version.js', '/highlight-js/github/v0.1.x.js'],
// ['/uploads/:site/:id/:sha.:extension', '/uploads/github/233/5555.4444'],
['/uploads/:site/:sha', '/uploads/github/233'],
['/uploads', '/uploads'],
['/posts', '/posts'],
['/posts/by_number/:topic_id/:post_number', '/posts/by_number/377/233'],
['/posts/:id/reply-history', '/posts/233/reply-history'],
// ['/posts/:username/deleted', '/posts/fundon/deleted'],
// ['/posts/:username/flagged', '/posts/fundon/flagged'],
['/posts/:id/deleted', '/posts/fundon/deleted'],
['/posts/:id/flagged', '/posts/fundon/flagged'],
['/groups', '/groups'],
['/groups/new', '/groups/new'],
['/groups/:id', '/groups/233'],
['/groups/:id/edit', '/groups/233/edit'],
['/groups/:id/members', '/groups/233/members'],
['/groups/:id/posts', '/groups/233/posts'],
['/groups/:id/counts', '/groups/233/counts'],
['/groups/:id/members/:username', '/groups/233/members/fundon'],
['/posts', '/posts'],
['/posts/new', '/posts/new'],
['/posts/:id', '/posts/233'],
['/posts/:id/edit', '/posts/233/edit'],
['/posts/bookmark', '/posts/bookmark'],
['/posts/wiki', '/posts/wiki'],
['/posts/post_type', '/posts/post_type'],
['/posts/rebake', '/posts/rebake'],
['/posts/unhide', '/posts/unhide'],
['/posts/replies', '/posts/replies'],
['/posts/revisions/latest', '/posts/revisions/latest'],
['/posts/revisions/:revision', '/posts/revisions/233'],
['/posts/revisions/:revision/hide', '/posts/revisions/233/hide'],
['/posts/revisions/:revision/show', '/posts/revisions/233/show'],
['/posts/recover', '/posts/recover'],
['/posts/destroy_many', '/posts/destroy_many'],
['/notifications', '/notifications'],
['/notifications/history', '/notifications/history'],
['/notifications/reset-new', '/notifications/reset-new'],
['/auth/:provider/callback', '/auth/github/callback'],
['/auth/failure', '/auth/failure'],
['/clicks', '/clicks'],
['/clicks/new', '/clicks/new'],
['/clicks/:id', '/clicks/2048'],
['/clicks/:id/edit', '/clicks/1024/edit'],
['/clicks/track', '/clicks/track'],
['/excerpt', '/excerpt'],
['/post_actions', '/post_actions'],
['/post_actions/new', '/post_actions/new'],
['/post_actions/:id', '/post_actions/233'],
['/post_actions/:id/edit', '/post_actions/233/edit'],
['/post_actions/users', '/post_actions/users'],
['/post_actions/defer_flags', '/post_actions/defer_flags'],
['/user_actions', '/user_actions'],
['/user_actions/new', '/user_actions/new'],
['/user_actions/:id', '/user_actions/233'],
['/user_actions/:id/edit', '/user_actions/233/edit'],
['/badges', '/badges'],
['/badges/:id', '/badges/233'],
['/badges/:id/:slug', '/badges/233/slug'],
['/user_badges', '/user_badges'],
['/user_badges/new', '/user_badges/new'],
['/user_badges/destroy', '/user_badges/destroy'],
['/c', '/c'],
['/categories', '/categories'],
['/categories/new', '/categories/new'],
['/categories/:id', '/categories/233'],
['/categories/:id/edit', '/categories/233/edit'],
['/category/uploads', '/category/uploads'],
['/category/:category_id/move', '/category/233/move'],
['/category/:category_id/notifications', '/category/233/notifications'],
['/category/:category_id/slug', '/category/233/slug'],
// ['/c/:id/show', '/c/233/show'],
['/c/:category/show', '/c/233/show'],
// ['/c/:category.rss', '/c/233.rss'],
// ['/c/:parent_category/:category.rss', '/c/233/377.rss'],
['/c/:category', '/c/233'],
['/c/:category/none', '/c/233/none'],
['/c/:category/none/l/top', '/c/233/none/l/top'],
['/c/:category/l/top', '/c/233/l/top'],
// ['/c/:parent_category/:category', '/c/233/377'],
// ['/c/:parent_category/:category/l/top', '/c/233/377/l/top'],
['/c/:category/:child_category', '/c/233/377'],
['/c/:category/:child_category/l/top', '/c/233/377/l/top'],
// ['/category/*path', '/category/hello-world-trek-router'],
['/top', '/top'],
['/search/query', '/search/query'],
['/t', '/t'],
// ['/t/:id', '/t/233'],
['/t/:slug', '/t/233'],
['/topics/bulk', '/topics/bulk'],
['/topics/reset-new', '/topics/reset-new'],
['/topics/timings', '/topics/timings'],
['/topics/similar_to', '/topics/similar_to'],
['/topics/feature_stats', '/topics/feature_stats'],
['/topics/created-by/:username', '/topics/created-by/function'],
['/topics/private-messages/:username', '/topics/private-messages/fundon'],
[
'/topics/private-messages-sent/:username',
'/topics/private-messages-sent/fundon'
],
[
'/topics/private-messages-unread/:username',
'/topics/private-messages-unread/fundon'
],
['/embed/comments', '/embed/comments'],
['/embed/count', '/embed/count'],
// ['/t/id_for/:slug', '/t/id_for/233'],
['/t/id_for/:topic_id', '/t/id_for/233'],
['/t/:slug/:topic_id/wordpress', '/t/233/333/wordpress'],
['/t/:slug/:topic_id/moderator-liked', '/t/233/377/moderator-liked'],
// ['/t/:topic_id/wordpress', '/t/233/wordpress'],
['/t/:slug/wordpress', '/t/233/wordpress'],
['/t/:slug/:topic_id/summary', '/t/233/233/summary'],
// ['/t/:topic_id/summary', '/t/444/summary'],
['/t/:slug/summary', '/t/444/summary'],
['/t/:slug/:topic_id', '/t/444/619'],
['/t/:slug/:topic_id/star', '/t/233/377/star'],
// ['/t/:topic_id/star', '/t/233/star'],
['/t/:slug/star', '/t/233/star'],
['/t/:slug/:topic_id/status', '/t/223/2377/status'],
// ['/t/:topic_id/status', '/t/233/status'],
// ['/t/:topic_id/clear-pin', '/t/233/clear-pin'],
// ['/t/:topic_id/re-pin', '/t/233/re-pin'],
// ['/t/:topic_id/mute', '/t/233/mute'],
// ['/t/:topic_id/unmute', '/t/233/unmute'],
// ['/t/:topic_id/autoclose', '/t/233/autoclose'],
// ['/t/:topic_id/make-banner', '/t/233/make-banner'],
// ['/t/:topic_id/remove-banner', '/t/233/remove-banner'],
// ['/t/:topic_id/remove-allowed-user', '/t/233/remove-allowed-user'],
// ['/t/:topic_id/recover', '/t/233/recover'],
// ['/t/:topic_id/:post_number', '/t/233/377'],
// ['/t/:topic_id/last', '/t/233/last'],
['/t/:slug/status', '/t/233/status'],
['/t/:slug/clear-pin', '/t/233/clear-pin'],
['/t/:slug/re-pin', '/t/233/re-pin'],
['/t/:slug/mute', '/t/233/mute'],
['/t/:slug/unmute', '/t/233/unmute'],
['/t/:slug/autoclose', '/t/233/autoclose'],
['/t/:slug/make-banner', '/t/233/make-banner'],
['/t/:slug/remove-banner', '/t/233/remove-banner'],
['/t/:slug/remove-allowed-user', '/t/233/remove-allowed-user'],
['/t/:slug/recover', '/t/233/recover'],
// ['/t/:slug/:post_number', '/t/233/377'],
['/t/:slug/last', '/t/233/last'],
// ['/t/:slug/:topic_id.rss', '/t/233/233.rss'],
['/t/:slug/:topic_id', '/t/233/2312'],
['/t/:slug/:topic_id/:post_number', '/t/233/2312/3123'],
['/t/:slug/:topic_id/last', '/t/233/231231/last'],
// ['/t/:topic_id/posts', '/t/2321/posts'],
// ['/t/:topic_id/timings', '/t/233/timings'],
// ['/t/:topic_id/invite', '/t/233/invite'],
// ['/t/:topic_id/move-posts', '/t/233/move-posts'],
// ['/t/:topic_id/merge-topic', '/t/233/merge-topic'],
// ['/t/:topic_id/change-owner', '/t/233/change-owner'],
// ['/t/:topic_id/timings', '/t/233/timings'],
// ['/t/:topic_id/bookmark', '/t/233/bookmark'],
// ['/t/:topic_id/remove_bookmarks', '/t/233/remove_bookmarks'],
// ['/t/:topic_id/notifications', '/t/233/notifications'],
['/t/:slug/posts', '/t/2321/posts'],
['/t/:slug/timings', '/t/233/timings'],
['/t/:slug/invite', '/t/233/invite'],
['/t/:slug/move-posts', '/t/233/move-posts'],
['/t/:slug/merge-topic', '/t/233/merge-topic'],
['/t/:slug/change-owner', '/t/233/change-owner'],
['/t/:slug/timings', '/t/233/timings'],
['/t/:slug/bookmark', '/t/233/bookmark'],
['/t/:slug/remove_bookmarks', '/t/233/remove_bookmarks'],
['/t/:slug/notifications', '/t/233/notifications'],
['/p/:post_id', '/p/2321'],
['/p/:post_id/:user_id', '/p/2321/231'],
['/posts/:id/cooked', '/posts/2321/cooked'],
['/posts/:id/expand-embed', '/posts/233/expand-embed'],
['/posts/:id/raw', '/posts/233/raw'],
['/posts/:id/raw-email', '/posts/233/raw-email'],
['/raw/:topic_id', '/raw/233'],
['/raw/:topic_id/:post_number', '/raw/233/377'],
['/invites', '/invites'],
['/invites/new', '/invites/new'],
['/invites/:id', '/invites/2323'],
['/invites/:id/edit', '/invites/2312/edit'],
['/invites/upload', '/invites/upload'],
['/invites/reinvite', '/invites/reinvite'],
['/invites/disposable', '/invites/disposable'],
['/invites/redeem/:token', '/invites/redeem/233'],
['/export_csv', '/export_csv'],
['/export_csv/new', '/export_csv/new'],
['/export_csv/:id', '/export_csv/233'],
['/export_csv/:id/edit', '/export_csv/2323/edit'],
['/export_csv/export_entity', '/export_csv/export_entity'],
['/onebox', '/onebox'],
['/error', '/error'],
['/exception', '/exception'],
['/message-bus/poll', '/message-bus/poll'],
['/draft', '/draft'],
// ['/cdn_asset/:site/*path', '/cdn_asset/2321/321312'],
['/robots.txt', '/robots.txt']
// ['/*url', '/fdsfjsdakjfjdslkfjlskdjflskdjflsfj']
]