Skip to content

Commit 05a682c

Browse files
committed
Removed unnecessary views.
1 parent 5ebf521 commit 05a682c

File tree

5 files changed

+4
-9
lines changed

5 files changed

+4
-9
lines changed

app/views/call_events/create.html.erb

Lines changed: 0 additions & 2 deletions
This file was deleted.

app/views/inbound_calls/create.html.erb

Lines changed: 0 additions & 2 deletions
This file was deleted.

app/views/inbound_sms/create.html.erb

Lines changed: 0 additions & 2 deletions
This file was deleted.

app/views/sms_message_status/create.html.erb

Lines changed: 0 additions & 2 deletions
This file was deleted.

config/routes.rb

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
Rails.application.routes.draw do
2-
get "inbound_calls/create"
32

43
# For OutboundSms controller, new & create
54
get '/outbound_sms/new', to: 'outbound_sms#new', as: :new_outbound_sms
@@ -13,6 +12,10 @@
1312

1413
# For OutboundCall controller, new & create & show
1514
resources :outbound_calls, only: [:new, :create, :show]
15+
16+
# For CallEvents controller, create
1617
resources :call_events, only: [:create]
18+
19+
# For InboundCalls controller, create
1720
resources :inbound_calls, only: [:create]
1821
end

0 commit comments

Comments
 (0)