質問編集履歴
1
画像をコードに変更しました
title
CHANGED
File without changes
|
body
CHANGED
@@ -133,4 +133,38 @@
|
|
133
133
|
```
|
134
134
|
|
135
135
|
・ルート一覧
|
136
|
+
``` Prefix Verb URI Pattern Controller#Action
|
137
|
+
letters_new GET /letters/new(.:format) letters#new
|
138
|
+
POST /letters/new(.:format) letters#create
|
139
|
+
letters_index GET /letters/index(.:format) letters#index
|
140
|
+
mies_top GET /mies/top(.:format) mies#top
|
141
|
+
mies_index GET /mies/index(.:format) mies#index
|
142
|
+
mies_new GET /mies/new(.:format) mies#new
|
143
|
+
POST /mies/new(.:format) mies#create
|
144
|
+
mies_ichiran GET /mies/ichiran(.:format) mies#ichiran
|
145
|
+
my GET /mies/:id(.:format) mies#show
|
146
|
+
edit_my GET /mies/:id/edit(.:format) mies#edit
|
136
|
-
|
147
|
+
PATCH /mies/:id(.:format) mies#update
|
148
|
+
DELETE /mies/:id(.:format) mies#destroy
|
149
|
+
rails_postmark_inbound_emails POST /rails/action_mailbox/postmark/inbound_emails(.:format) action_mailbox/ingresses/postmark/inbound_emails#create
|
150
|
+
rails_relay_inbound_emails POST /rails/action_mailbox/relay/inbound_emails(.:format) action_mailbox/ingresses/relay/inbound_emails#create
|
151
|
+
rails_sendgrid_inbound_emails POST /rails/action_mailbox/sendgrid/inbound_emails(.:format) action_mailbox/ingresses/sendgrid/inbound_emails#create
|
152
|
+
rails_mandrill_inbound_health_check GET /rails/action_mailbox/mandrill/inbound_emails(.:format) action_mailbox/ingresses/mandrill/inbound_emails#health_check
|
153
|
+
rails_mandrill_inbound_emails POST /rails/action_mailbox/mandrill/inbound_emails(.:format) action_mailbox/ingresses/mandrill/inbound_emails#create
|
154
|
+
rails_mailgun_inbound_emails POST /rails/action_mailbox/mailgun/inbound_emails/mime(.:format) action_mailbox/ingresses/mailgun/inbound_emails#create
|
155
|
+
rails_conductor_inbound_emails GET /rails/conductor/action_mailbox/inbound_emails(.:format) rails/conductor/action_mailbox/inbound_emails#index
|
156
|
+
POST /rails/conductor/action_mailbox/inbound_emails(.:format) rails/conductor/action_mailbox/inbound_emails#create
|
157
|
+
new_rails_conductor_inbound_email GET /rails/conductor/action_mailbox/inbound_emails/new(.:format) rails/conductor/action_mailbox/inbound_emails#new
|
158
|
+
edit_rails_conductor_inbound_email GET /rails/conductor/action_mailbox/inbound_emails/:id/edit(.:format) rails/conductor/action_mailbox/inbound_emails#edit
|
159
|
+
rails_conductor_inbound_email GET /rails/conductor/action_mailbox/inbound_emails/:id(.:format) rails/conductor/action_mailbox/inbound_emails#show
|
160
|
+
PATCH /rails/conductor/action_mailbox/inbound_emails/:id(.:format) rails/conductor/action_mailbox/inbound_emails#update
|
161
|
+
PUT /rails/conductor/action_mailbox/inbound_emails/:id(.:format) rails/conductor/action_mailbox/inbound_emails#update
|
162
|
+
DELETE /rails/conductor/action_mailbox/inbound_emails/:id(.:format) rails/conductor/action_mailbox/inbound_emails#destroy
|
163
|
+
rails_conductor_inbound_email_reroute POST /rails/conductor/action_mailbox/:inbound_email_id/reroute(.:format) rails/conductor/action_mailbox/reroutes#create
|
164
|
+
rails_service_blob GET /rails/active_storage/blobs/:signed_id/*filename(.:format) active_storage/blobs#show
|
165
|
+
rails_blob_representation GET /rails/active_storage/representations/:signed_blob_id/:variation_key/*filename(.:format) active_storage/representations#show
|
166
|
+
rails_disk_service GET /rails/active_storage/disk/:encoded_key/*filename(.:format) active_storage/disk#show
|
167
|
+
update_rails_disk_service PUT /rails/active_storage/disk/:encoded_token(.:format) active_storage/disk#update
|
168
|
+
rails_direct_uploads POST /rails/active_storage/direct_uploads(.:format) active_storage/direct_uploads#create
|
169
|
+
|
170
|
+
```
|