mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 21:18:00 +01:00
25 lines
No EOL
494 B
PHP
25 lines
No EOL
494 B
PHP
<?php
|
|
|
|
use Entities\User;
|
|
|
|
class ArtistsController extends Controller {
|
|
public function getIndex() {
|
|
return View::make('artists.index');
|
|
}
|
|
|
|
public function getProfile($slug) {
|
|
$user = User::whereSlug($slug)->first();
|
|
if (!$user)
|
|
App::abort('404');
|
|
|
|
return View::make('artists.profile');
|
|
}
|
|
|
|
public function getShortlink($id) {
|
|
$user = User::find($id);
|
|
if (!$user)
|
|
App::abort('404');
|
|
|
|
return Redirect::action('ArtistsController@getProfile', [$id]);
|
|
}
|
|
} |