Реализация Page и DataCardWidget

This commit is contained in:
Даниил Музыченко
2026-06-08 22:55:30 +04:00
commit 68da4d2031
117 changed files with 9685 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
Rails.application.routes.draw do
get "up" => "rails/health#show", as: :rails_health_check
namespace :api do
namespace :v1 do
post "selected_index", to: "channels#selected_index"
resources :channels, only: %i[index show] do
scope module: :channels do
resources :histories, only: :index
end
end
end
end
end