8 lines
136 B
Ruby
8 lines
136 B
Ruby
class Api::V0::PlaylistsController < Api::ApplicationController
|
|
respond_to :json
|
|
|
|
def index
|
|
@playlists = Playlist.all
|
|
end
|
|
end
|