-
Notifications
You must be signed in to change notification settings - Fork 0
/
routes.txt
60 lines (60 loc) · 5.23 KB
/
routes.txt
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
root / home#index
user_journals GET /users/:user_id/journals(.:format) journals#index
POST /users/:user_id/journals(.:format) journals#create
new_user_journal GET /users/:user_id/journals/new(.:format) journals#new
edit_user_journal GET /users/:user_id/journals/:id/edit(.:format) journals#edit
user_journal GET /users/:user_id/journals/:id(.:format) journals#show
PUT /users/:user_id/journals/:id(.:format) journals#update
DELETE /users/:user_id/journals/:id(.:format) journals#destroy
user_annotations GET /users/:user_id/annotations(.:format) annotations#index
POST /users/:user_id/annotations(.:format) annotations#create
new_user_annotation GET /users/:user_id/annotations/new(.:format) annotations#new
edit_user_annotation GET /users/:user_id/annotations/:id/edit(.:format) annotations#edit
user_annotation GET /users/:user_id/annotations/:id(.:format) annotations#show
PUT /users/:user_id/annotations/:id(.:format) annotations#update
DELETE /users/:user_id/annotations/:id(.:format) annotations#destroy
user GET /users/:id(.:format) users#show
people GET /people(.:format) people#index
POST /people(.:format) people#create
new_person GET /people/new(.:format) people#new
edit_person GET /people/:id/edit(.:format) people#edit
person GET /people/:id(.:format) people#show
PUT /people/:id(.:format) people#update
DELETE /people/:id(.:format) people#destroy
posts GET /posts(.:format) posts#index
POST /posts(.:format) posts#create
new_post GET /posts/new(.:format) posts#new
edit_post GET /posts/:id/edit(.:format) posts#edit
post GET /posts/:id(.:format) posts#show
PUT /posts/:id(.:format) posts#update
DELETE /posts/:id(.:format) posts#destroy
discussions GET /discussions(.:format) discussions#index
POST /discussions(.:format) discussions#create
new_discussion GET /discussions/new(.:format) discussions#new
edit_discussion GET /discussions/:id/edit(.:format) discussions#edit
discussion GET /discussions/:id(.:format) discussions#show
PUT /discussions/:id(.:format) discussions#update
DELETE /discussions/:id(.:format) discussions#destroy
guides GET /guides(.:format) guides#index
POST /guides(.:format) guides#create
new_guide GET /guides/new(.:format) guides#new
edit_guide GET /guides/:id/edit(.:format) guides#edit
guide GET /guides/:id(.:format) guides#show
PUT /guides/:id(.:format) guides#update
DELETE /guides/:id(.:format) guides#destroy
sources GET /sources(.:format) sources#index
POST /sources(.:format) sources#create
new_source GET /sources/new(.:format) sources#new
edit_source GET /sources/:id/edit(.:format) sources#edit
source GET /sources/:id(.:format) sources#show
PUT /sources/:id(.:format) sources#update
DELETE /sources/:id(.:format) sources#destroy
image_inline GET /images/:image_id/inline(.:format) images#inline
images GET /images(.:format) images#index
POST /images(.:format) images#create
new_image GET /images/new(.:format) images#new
edit_image GET /images/:id/edit(.:format) images#edit
image GET /images/:id(.:format) images#show
PUT /images/:id(.:format) images#update
DELETE /images/:id(.:format) images#destroy
media GET /media/*file_path(.:format) media#show