mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-26 23:07:59 +01:00
21 lines
No EOL
354 B
PHP
21 lines
No EOL
354 B
PHP
<?php
|
|
|
|
use App\Http\Controllers\Controller;
|
|
|
|
class ContentController extends Controller
|
|
{
|
|
public function getTracks()
|
|
{
|
|
return View::make('shared.null');
|
|
}
|
|
|
|
public function getAlbums()
|
|
{
|
|
return View::make('shared.null');
|
|
}
|
|
|
|
public function getPlaylists()
|
|
{
|
|
return View::make('shared.null');
|
|
}
|
|
} |