質問編集履歴
1
画像をコードに変更しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -268,4 +268,72 @@
|
|
268
268
|
|
269
269
|
・ルート一覧
|
270
270
|
|
271
|
+
``` Prefix Verb URI Pattern Controller#Action
|
272
|
+
|
273
|
+
letters_new GET /letters/new(.:format) letters#new
|
274
|
+
|
275
|
+
POST /letters/new(.:format) letters#create
|
276
|
+
|
277
|
+
letters_index GET /letters/index(.:format) letters#index
|
278
|
+
|
279
|
+
mies_top GET /mies/top(.:format) mies#top
|
280
|
+
|
281
|
+
mies_index GET /mies/index(.:format) mies#index
|
282
|
+
|
283
|
+
mies_new GET /mies/new(.:format) mies#new
|
284
|
+
|
285
|
+
POST /mies/new(.:format) mies#create
|
286
|
+
|
287
|
+
mies_ichiran GET /mies/ichiran(.:format) mies#ichiran
|
288
|
+
|
289
|
+
my GET /mies/:id(.:format) mies#show
|
290
|
+
|
291
|
+
edit_my GET /mies/:id/edit(.:format) mies#edit
|
292
|
+
|
271
|
-
|
293
|
+
PATCH /mies/:id(.:format) mies#update
|
294
|
+
|
295
|
+
DELETE /mies/:id(.:format) mies#destroy
|
296
|
+
|
297
|
+
rails_postmark_inbound_emails POST /rails/action_mailbox/postmark/inbound_emails(.:format) action_mailbox/ingresses/postmark/inbound_emails#create
|
298
|
+
|
299
|
+
rails_relay_inbound_emails POST /rails/action_mailbox/relay/inbound_emails(.:format) action_mailbox/ingresses/relay/inbound_emails#create
|
300
|
+
|
301
|
+
rails_sendgrid_inbound_emails POST /rails/action_mailbox/sendgrid/inbound_emails(.:format) action_mailbox/ingresses/sendgrid/inbound_emails#create
|
302
|
+
|
303
|
+
rails_mandrill_inbound_health_check GET /rails/action_mailbox/mandrill/inbound_emails(.:format) action_mailbox/ingresses/mandrill/inbound_emails#health_check
|
304
|
+
|
305
|
+
rails_mandrill_inbound_emails POST /rails/action_mailbox/mandrill/inbound_emails(.:format) action_mailbox/ingresses/mandrill/inbound_emails#create
|
306
|
+
|
307
|
+
rails_mailgun_inbound_emails POST /rails/action_mailbox/mailgun/inbound_emails/mime(.:format) action_mailbox/ingresses/mailgun/inbound_emails#create
|
308
|
+
|
309
|
+
rails_conductor_inbound_emails GET /rails/conductor/action_mailbox/inbound_emails(.:format) rails/conductor/action_mailbox/inbound_emails#index
|
310
|
+
|
311
|
+
POST /rails/conductor/action_mailbox/inbound_emails(.:format) rails/conductor/action_mailbox/inbound_emails#create
|
312
|
+
|
313
|
+
new_rails_conductor_inbound_email GET /rails/conductor/action_mailbox/inbound_emails/new(.:format) rails/conductor/action_mailbox/inbound_emails#new
|
314
|
+
|
315
|
+
edit_rails_conductor_inbound_email GET /rails/conductor/action_mailbox/inbound_emails/:id/edit(.:format) rails/conductor/action_mailbox/inbound_emails#edit
|
316
|
+
|
317
|
+
rails_conductor_inbound_email GET /rails/conductor/action_mailbox/inbound_emails/:id(.:format) rails/conductor/action_mailbox/inbound_emails#show
|
318
|
+
|
319
|
+
PATCH /rails/conductor/action_mailbox/inbound_emails/:id(.:format) rails/conductor/action_mailbox/inbound_emails#update
|
320
|
+
|
321
|
+
PUT /rails/conductor/action_mailbox/inbound_emails/:id(.:format) rails/conductor/action_mailbox/inbound_emails#update
|
322
|
+
|
323
|
+
DELETE /rails/conductor/action_mailbox/inbound_emails/:id(.:format) rails/conductor/action_mailbox/inbound_emails#destroy
|
324
|
+
|
325
|
+
rails_conductor_inbound_email_reroute POST /rails/conductor/action_mailbox/:inbound_email_id/reroute(.:format) rails/conductor/action_mailbox/reroutes#create
|
326
|
+
|
327
|
+
rails_service_blob GET /rails/active_storage/blobs/:signed_id/*filename(.:format) active_storage/blobs#show
|
328
|
+
|
329
|
+
rails_blob_representation GET /rails/active_storage/representations/:signed_blob_id/:variation_key/*filename(.:format) active_storage/representations#show
|
330
|
+
|
331
|
+
rails_disk_service GET /rails/active_storage/disk/:encoded_key/*filename(.:format) active_storage/disk#show
|
332
|
+
|
333
|
+
update_rails_disk_service PUT /rails/active_storage/disk/:encoded_token(.:format) active_storage/disk#update
|
334
|
+
|
335
|
+
rails_direct_uploads POST /rails/active_storage/direct_uploads(.:format) active_storage/direct_uploads#create
|
336
|
+
|
337
|
+
|
338
|
+
|
339
|
+
```
|