chat-app/backend/config/routes.rb
2025-02-15 22:16:39 +09:00

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