7 lines
180 B
Ruby
7 lines
180 B
Ruby
Rails.application.routes.draw do
|
|
get '/api/test', to: 'application#test'
|
|
|
|
resources :rooms, only: %i[index create] do
|
|
resources :messages, only: %i[index create]
|
|
end
|
|
end
|