-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlistRoutes
213 lines (213 loc) · 30.3 KB
/
listRoutes
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
(in /home/mike/Alberta-IGEM)
sections GET /sections(.:format) {:action=>"index", :controller=>"sections"}
POST /sections(.:format) {:action=>"create", :controller=>"sections"}
new_section GET /sections/new(.:format) {:action=>"new", :controller=>"sections"}
edit_section GET /sections/:id/edit(.:format) {:action=>"edit", :controller=>"sections"}
auto_create_section POST /sections/:id/auto_create(.:format) {:action=>"auto_create", :controller=>"sections"}
section GET /sections/:id(.:format) {:action=>"show", :controller=>"sections"}
PUT /sections/:id(.:format) {:action=>"update", :controller=>"sections"}
DELETE /sections/:id(.:format) {:action=>"destroy", :controller=>"sections"}
glossaries GET /glossaries(.:format) {:action=>"index", :controller=>"glossaries"}
POST /glossaries(.:format) {:action=>"create", :controller=>"glossaries"}
new_glossary GET /glossaries/new(.:format) {:action=>"new", :controller=>"glossaries"}
edit_glossary GET /glossaries/:id/edit(.:format) {:action=>"edit", :controller=>"glossaries"}
glossary GET /glossaries/:id(.:format) {:action=>"show", :controller=>"glossaries"}
PUT /glossaries/:id(.:format) {:action=>"update", :controller=>"glossaries"}
DELETE /glossaries/:id(.:format) {:action=>"destroy", :controller=>"glossaries"}
definitions GET /definitions(.:format) {:action=>"index", :controller=>"definitions"}
POST /definitions(.:format) {:action=>"create", :controller=>"definitions"}
new_definition GET /definitions/new(.:format) {:action=>"new", :controller=>"definitions"}
edit_definition GET /definitions/:id/edit(.:format) {:action=>"edit", :controller=>"definitions"}
definition GET /definitions/:id(.:format) {:action=>"show", :controller=>"definitions"}
PUT /definitions/:id(.:format) {:action=>"update", :controller=>"definitions"}
DELETE /definitions/:id(.:format) {:action=>"destroy", :controller=>"definitions"}
encyclopaedia_sections GET /encyclopaedias/:encyclopaedia_id/sections(.:format) {:action=>"index", :controller=>"sections"}
POST /encyclopaedias/:encyclopaedia_id/sections(.:format) {:action=>"create", :controller=>"sections"}
new_encyclopaedia_section GET /encyclopaedias/:encyclopaedia_id/sections/new(.:format) {:action=>"new", :controller=>"sections"}
edit_encyclopaedia_section GET /encyclopaedias/:encyclopaedia_id/sections/:id/edit(.:format) {:action=>"edit", :controller=>"sections"}
upload_encyclopaedia_section PUT /encyclopaedias/:encyclopaedia_id/sections/:id/upload(.:format) {:action=>"upload", :controller=>"sections"}
encyclopaedia_section GET /encyclopaedias/:encyclopaedia_id/sections/:id(.:format) {:action=>"show", :controller=>"sections"}
PUT /encyclopaedias/:encyclopaedia_id/sections/:id(.:format) {:action=>"update", :controller=>"sections"}
DELETE /encyclopaedias/:encyclopaedia_id/sections/:id(.:format) {:action=>"destroy", :controller=>"sections"}
encyclopaedias GET /encyclopaedias(.:format) {:action=>"index", :controller=>"encyclopaedias"}
POST /encyclopaedias(.:format) {:action=>"create", :controller=>"encyclopaedias"}
new_encyclopaedia GET /encyclopaedias/new(.:format) {:action=>"new", :controller=>"encyclopaedias"}
edit_encyclopaedia GET /encyclopaedias/:id/edit(.:format) {:action=>"edit", :controller=>"encyclopaedias"}
upload_encyclopaedia POST /encyclopaedias/:id/upload(.:format) {:action=>"upload", :controller=>"encyclopaedias"}
encyclopaedia GET /encyclopaedias/:id(.:format) {:action=>"show", :controller=>"encyclopaedias"}
PUT /encyclopaedias/:id(.:format) {:action=>"update", :controller=>"encyclopaedias"}
DELETE /encyclopaedias/:id(.:format) {:action=>"destroy", :controller=>"encyclopaedias"}
logout /logout {:action=>"destroy", :controller=>"sessions"}
login /login {:action=>"new", :controller=>"sessions"}
register /register {:action=>"create", :controller=>"users"}
activate /activate/:activation_code {:action=>"activate", :controller=>"users"}
signup /signup {:action=>"new", :controller=>"users"}
forgot /forgot {:action=>"forgot", :controller=>"users"}
reset /reset/:reset_code {:action=>"reset", :controller=>"users"}
new_email /users/:id/new_email/:key {:action=>"activate_email", :controller=>"users"}
sandbox /sandbox {:action=>"sandbox", :controller=>"constructs"}
print /print {:method=>:post, :action=>"print", :controller=>"print"}
users GET /users(.:format) {:action=>"index", :controller=>"users"}
POST /users(.:format) {:action=>"create", :controller=>"users"}
new_user GET /users/new(.:format) {:action=>"new", :controller=>"users"}
edit_user GET /users/:id/edit(.:format) {:action=>"edit", :controller=>"users"}
new_email_user PUT /users/:id/new_email(.:format) {:action=>"new_email", :controller=>"users"}
user GET /users/:id(.:format) {:action=>"show", :controller=>"users"}
PUT /users/:id(.:format) {:action=>"update", :controller=>"users"}
DELETE /users/:id(.:format) {:action=>"destroy", :controller=>"users"}
group_messages GET /groups/:group_id/messages(.:format) {:action=>"index", :controller=>"messages"}
POST /groups/:group_id/messages(.:format) {:action=>"create", :controller=>"messages"}
group_message PUT /groups/:group_id/messages/:id(.:format) {:action=>"update", :controller=>"messages"}
DELETE /groups/:group_id/messages/:id(.:format) {:action=>"destroy", :controller=>"messages"}
groups GET /groups(.:format) {:action=>"index", :controller=>"groups"}
POST /groups(.:format) {:action=>"create", :controller=>"groups"}
new_group GET /groups/new(.:format) {:action=>"new", :controller=>"groups"}
edit_group GET /groups/:id/edit(.:format) {:action=>"edit", :controller=>"groups"}
join_group GET /groups/:id/join(.:format) {:action=>"join", :controller=>"groups"}
upload_group POST /groups/:id/upload(.:format) {:action=>"upload", :controller=>"groups"}
join_with_key_group POST /groups/:id/join_with_key(.:format) {:action=>"join_with_key", :controller=>"groups"}
request_to_join_group POST /groups/:id/request_to_join(.:format) {:action=>"request_to_join", :controller=>"groups"}
new_key_group PUT /groups/:id/new_key(.:format) {:action=>"new_key", :controller=>"groups"}
change_role_group PUT /groups/:id/change_role(.:format) {:action=>"change_role", :controller=>"groups"}
kick_out_group DELETE /groups/:id/kick_out(.:format) {:action=>"kick_out", :controller=>"groups"}
quit_group DELETE /groups/:id/quit(.:format) {:action=>"quit", :controller=>"groups"}
group GET /groups/:id(.:format) {:action=>"show", :controller=>"groups"}
PUT /groups/:id(.:format) {:action=>"update", :controller=>"groups"}
DELETE /groups/:id(.:format) {:action=>"destroy", :controller=>"groups"}
viewer_index GET /viewer(.:format) {:action=>"index", :controller=>"viewer"}
POST /viewer(.:format) {:action=>"create", :controller=>"viewer"}
new_viewer GET /viewer/new(.:format) {:action=>"new", :controller=>"viewer"}
edit_viewer GET /viewer/:id/edit(.:format) {:action=>"edit", :controller=>"viewer"}
viewer GET /viewer/:id(.:format) {:action=>"show", :controller=>"viewer"}
PUT /viewer/:id(.:format) {:action=>"update", :controller=>"viewer"}
DELETE /viewer/:id(.:format) {:action=>"destroy", :controller=>"viewer"}
reject_request POST /requests/:id/reject(.:format) {:action=>"reject", :controller=>"requests"}
accept_request POST /requests/:id/accept(.:format) {:action=>"accept", :controller=>"requests"}
request DELETE /requests/:id(.:format) {:action=>"destroy", :controller=>"requests"}
categories GET /categories(.:format) {:action=>"index", :controller=>"categories"}
POST /categories(.:format) {:action=>"create", :controller=>"categories"}
new_category GET /categories/new(.:format) {:action=>"new", :controller=>"categories"}
edit_category GET /categories/:id/edit(.:format) {:action=>"edit", :controller=>"categories"}
update_category POST /categories/:id/update(.:format) {:action=>"update", :controller=>"categories"}
category GET /categories/:id(.:format) {:action=>"show", :controller=>"categories"}
PUT /categories/:id(.:format) {:action=>"update", :controller=>"categories"}
DELETE /categories/:id(.:format) {:action=>"destroy", :controller=>"categories"}
bio_byte_annotations GET /bio_bytes/:bio_byte_id/annotations(.:format) {:action=>"index", :controller=>"annotations"}
POST /bio_bytes/:bio_byte_id/annotations(.:format) {:action=>"create", :controller=>"annotations"}
new_bio_byte_annotation GET /bio_bytes/:bio_byte_id/annotations/new(.:format) {:action=>"new", :controller=>"annotations"}
edit_bio_byte_annotation GET /bio_bytes/:bio_byte_id/annotations/:id/edit(.:format) {:action=>"edit", :controller=>"annotations"}
bio_byte_annotation GET /bio_bytes/:bio_byte_id/annotations/:id(.:format) {:action=>"show", :controller=>"annotations"}
PUT /bio_bytes/:bio_byte_id/annotations/:id(.:format) {:action=>"update", :controller=>"annotations"}
DELETE /bio_bytes/:bio_byte_id/annotations/:id(.:format) {:action=>"destroy", :controller=>"annotations"}
bio_bytes GET /bio_bytes(.:format) {:action=>"index", :controller=>"bio_bytes"}
POST /bio_bytes(.:format) {:action=>"create", :controller=>"bio_bytes"}
new_bio_byte GET /bio_bytes/new(.:format) {:action=>"new", :controller=>"bio_bytes"}
edit_bio_byte GET /bio_bytes/:id/edit(.:format) {:action=>"edit", :controller=>"bio_bytes"}
download_vf_bio_byte GET /bio_bytes/:id/download_vf(.:format) {:action=>"download_vf", :controller=>"bio_bytes"}
download_vr_bio_byte GET /bio_bytes/:id/download_vr(.:format) {:action=>"download_vr", :controller=>"bio_bytes"}
datasheet_bio_byte GET /bio_bytes/:id/datasheet(.:format) {:action=>"datasheet", :controller=>"bio_bytes"}
validate_sequence_bio_byte GET /bio_bytes/:id/validate_sequence(.:format) {:action=>"validate_sequence", :controller=>"bio_bytes"}
upload_abi_bio_byte POST /bio_bytes/:id/upload_abi(.:format) {:action=>"upload_abi", :controller=>"bio_bytes"}
upload_bio_byte POST /bio_bytes/:id/upload(.:format) {:action=>"upload", :controller=>"bio_bytes"}
update_bio_byte POST /bio_bytes/:id/update(.:format) {:action=>"update", :controller=>"bio_bytes"}
upload_desc_img_bio_byte POST /bio_bytes/:id/upload_desc_img(.:format) {:action=>"upload_desc_img", :controller=>"bio_bytes"}
bio_byte GET /bio_bytes/:id(.:format) {:action=>"show", :controller=>"bio_bytes"}
PUT /bio_bytes/:id(.:format) {:action=>"update", :controller=>"bio_bytes"}
DELETE /bio_bytes/:id(.:format) {:action=>"destroy", :controller=>"bio_bytes"}
orfs GET /orfs(.:format) {:action=>"index", :controller=>"bio_bytes"}
POST /orfs(.:format) {:action=>"create", :controller=>"bio_bytes"}
new_orf GET /orfs/new(.:format) {:action=>"new", :controller=>"bio_bytes"}
edit_orf GET /orfs/:id/edit(.:format) {:action=>"edit", :controller=>"bio_bytes"}
orf GET /orfs/:id(.:format) {:action=>"show", :controller=>"bio_bytes"}
PUT /orfs/:id(.:format) {:action=>"update", :controller=>"bio_bytes"}
DELETE /orfs/:id(.:format) {:action=>"destroy", :controller=>"bio_bytes"}
linkers GET /linkers(.:format) {:action=>"index", :controller=>"bio_bytes"}
POST /linkers(.:format) {:action=>"create", :controller=>"bio_bytes"}
new_linker GET /linkers/new(.:format) {:action=>"new", :controller=>"bio_bytes"}
edit_linker GET /linkers/:id/edit(.:format) {:action=>"edit", :controller=>"bio_bytes"}
linker GET /linkers/:id(.:format) {:action=>"show", :controller=>"bio_bytes"}
PUT /linkers/:id(.:format) {:action=>"update", :controller=>"bio_bytes"}
DELETE /linkers/:id(.:format) {:action=>"destroy", :controller=>"bio_bytes"}
new_session GET /session/new(.:format) {:action=>"new", :controller=>"sessions"}
edit_session GET /session/edit(.:format) {:action=>"edit", :controller=>"sessions"}
session GET /session(.:format) {:action=>"show", :controller=>"sessions"}
PUT /session(.:format) {:action=>"update", :controller=>"sessions"}
DELETE /session(.:format) {:action=>"destroy", :controller=>"sessions"}
POST /session(.:format) {:action=>"create", :controller=>"sessions"}
new_step_note GET /steps/:step_id/note/new(.:format) {:action=>"new", :controller=>"notes"}
edit_step_note GET /steps/:step_id/note/edit(.:format) {:action=>"edit", :controller=>"notes"}
upload_step_note POST /steps/:step_id/note/upload(.:format) {:action=>"upload", :controller=>"notes"}
step_note GET /steps/:step_id/note(.:format) {:action=>"show", :controller=>"notes"}
PUT /steps/:step_id/note(.:format) {:action=>"update", :controller=>"notes"}
DELETE /steps/:step_id/note(.:format) {:action=>"destroy", :controller=>"notes"}
POST /steps/:step_id/note(.:format) {:action=>"create", :controller=>"notes"}
steps GET /steps(.:format) {:action=>"index", :controller=>"steps"}
POST /steps(.:format) {:action=>"create", :controller=>"steps"}
new_step GET /steps/new(.:format) {:action=>"new", :controller=>"steps"}
edit_step GET /steps/:id/edit(.:format) {:action=>"edit", :controller=>"steps"}
step GET /steps/:id(.:format) {:action=>"show", :controller=>"steps"}
PUT /steps/:id(.:format) {:action=>"update", :controller=>"steps"}
DELETE /steps/:id(.:format) {:action=>"destroy", :controller=>"steps"}
GET /glossaries(.:format) {:action=>"index", :controller=>"glossaries"}
POST /glossaries(.:format) {:action=>"create", :controller=>"glossaries"}
GET /glossaries/new(.:format) {:action=>"new", :controller=>"glossaries"}
GET /glossaries/:id/edit(.:format) {:action=>"edit", :controller=>"glossaries"}
GET /glossaries/:id(.:format) {:action=>"show", :controller=>"glossaries"}
PUT /glossaries/:id(.:format) {:action=>"update", :controller=>"glossaries"}
DELETE /glossaries/:id(.:format) {:action=>"destroy", :controller=>"glossaries"}
experiment_steps GET /experiments/:experiment_id/steps(.:format) {:action=>"index", :controller=>"steps"}
POST /experiments/:experiment_id/steps(.:format) {:action=>"create", :controller=>"steps"}
new_experiment_step GET /experiments/:experiment_id/steps/new(.:format) {:action=>"new", :controller=>"steps"}
edit_experiment_step GET /experiments/:experiment_id/steps/:id/edit(.:format) {:action=>"edit", :controller=>"steps"}
upload_experiment_step POST /experiments/:experiment_id/steps/:id/upload(.:format) {:action=>"upload", :controller=>"steps"}
insert_before_experiment_step PUT /experiments/:experiment_id/steps/:id/insert_before(.:format) {:action=>"insert_before", :controller=>"steps"}
up_experiment_step PUT /experiments/:experiment_id/steps/:id/up(.:format) {:action=>"up", :controller=>"steps"}
down_experiment_step PUT /experiments/:experiment_id/steps/:id/down(.:format) {:action=>"down", :controller=>"steps"}
insert_after_experiment_step PUT /experiments/:experiment_id/steps/:id/insert_after(.:format) {:action=>"insert_after", :controller=>"steps"}
experiment_step GET /experiments/:experiment_id/steps/:id(.:format) {:action=>"show", :controller=>"steps"}
PUT /experiments/:experiment_id/steps/:id(.:format) {:action=>"update", :controller=>"steps"}
DELETE /experiments/:experiment_id/steps/:id(.:format) {:action=>"destroy", :controller=>"steps"}
experiment_constructs GET /experiments/:experiment_id/constructs(.:format) {:action=>"index", :controller=>"constructs"}
POST /experiments/:experiment_id/constructs(.:format) {:action=>"create", :controller=>"constructs"}
new_experiment_construct GET /experiments/:experiment_id/constructs/new(.:format) {:action=>"new", :controller=>"constructs"}
edit_experiment_construct GET /experiments/:experiment_id/constructs/:id/edit(.:format) {:action=>"edit", :controller=>"constructs"}
experiment_construct GET /experiments/:experiment_id/constructs/:id(.:format) {:action=>"show", :controller=>"constructs"}
PUT /experiments/:experiment_id/constructs/:id(.:format) {:action=>"update", :controller=>"constructs"}
DELETE /experiments/:experiment_id/constructs/:id(.:format) {:action=>"destroy", :controller=>"constructs"}
experiments GET /experiments(.:format) {:action=>"index", :controller=>"experiments"}
POST /experiments(.:format) {:action=>"create", :controller=>"experiments"}
new_experiment GET /experiments/new(.:format) {:action=>"new", :controller=>"experiments"}
edit_experiment GET /experiments/:id/edit(.:format) {:action=>"edit", :controller=>"experiments"}
clone_experiment GET /experiments/:id/clone(.:format) {:action=>"clone", :controller=>"experiments"}
print_experiment GET /experiments/:id/print(.:format) {:action=>"print", :controller=>"experiments"}
complete_step_experiment POST /experiments/:id/complete_step(.:format) {:action=>"complete_step", :controller=>"experiments"}
set_status_experiment POST /experiments/:id/set_status(.:format) {:action=>"set_status", :controller=>"experiments"}
experiment GET /experiments/:id(.:format) {:action=>"show", :controller=>"experiments"}
PUT /experiments/:id(.:format) {:action=>"update", :controller=>"experiments"}
DELETE /experiments/:id(.:format) {:action=>"destroy", :controller=>"experiments"}
step_generators GET /step_generators(.:format) {:action=>"index", :controller=>"step_generators"}
POST /step_generators(.:format) {:action=>"create", :controller=>"step_generators"}
new_step_generator GET /step_generators/new(.:format) {:action=>"new", :controller=>"step_generators"}
edit_step_generator GET /step_generators/:id/edit(.:format) {:action=>"edit", :controller=>"step_generators"}
step_generator GET /step_generators/:id(.:format) {:action=>"show", :controller=>"step_generators"}
PUT /step_generators/:id(.:format) {:action=>"update", :controller=>"step_generators"}
DELETE /step_generators/:id(.:format) {:action=>"destroy", :controller=>"step_generators"}
part_data /get_part_data {:action=>"get_data", :controller=>"constructs"}
save_construct /save_construct {:action=>"save", :controller=>"constructs"}
generate_protocol /generate_protocol {:action=>"generate_protocol", :controller=>"constructs"}
move_step_up /experiments/:experiment_id/steps/:id/up {:action=>"up", :controller=>"steps"}
move_step_down /experiments/:experiment_id/steps/:id/down {:action=>"down", :controller=>"steps"}
root / {:action=>"index", :controller=>"home"}
home / {:action=>"index", :controller=>"home"}
about /about {:action=>"about", :controller=>"home"}
image /images/:id(.:format) {:method=>:get, :action=>"show", :controller=>"images"}
step_image /images/:id/step(.:format) {:method=>:get, :action=>"step", :controller=>"images"}
thumb_image /images/:id/thumb(.:format) {:method=>:get, :action=>"thumb", :controller=>"images"}
section_image /images/:id/section(.:format) {:method=>:get, :action=>"section", :controller=>"images"}
image150 /images/:id/image150(.:format) {:method=>:get, :action=>"image150", :controller=>"images"}
images GET /images(.:format) {:action=>"index", :controller=>"images"}
POST /images(.:format) {:action=>"create", :controller=>"images"}
new_image GET /images/new(.:format) {:action=>"new", :controller=>"images"}
edit_image GET /images/:id/edit(.:format) {:action=>"edit", :controller=>"images"}
PUT /images/:id(.:format) {:action=>"update", :controller=>"images"}
DELETE /images/:id(.:format) {:action=>"destroy", :controller=>"images"}