1
0
Fork 0
beathaven/config/routes.rb

11 lines
245 B
Ruby

BeatHaven::Application.routes.draw do
namespace :api do
resources :artists, only: [:show], constraints: { id: /.+/ }
resources :albums, only: [:picture] do
member { get :picture }
end
end
root to: "application#main"
end