video_channel/config/routes.rb

21 lines
575 B
Ruby

Rails.application.routes.draw do
namespace :panel do
namespace :video do
namespace :back_end do
match "videos/get_videos" => "videos#get_videos"
resources :videos
resources :channel_videos
end
namespace :front_end do
resources :channel_videos
# match "/channel_videos" => "channel_videos#channel_videos", :via => :get
end
namespace :widget do
#resources :channel_videos
match "/channel_videos" => "channel_videos#channel_videos", :via => :get
end
end
end
end