mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 21:18:00 +01:00
14 lines
No EOL
316 B
PHP
14 lines
No EOL
316 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Config;
|
|
use Illuminate\Support\Facades\Redirect;
|
|
|
|
class AccountController extends Controller {
|
|
public function getIndex() {
|
|
return View::make('shared.null');
|
|
}
|
|
|
|
public function getRegister() {
|
|
return Redirect::to(Config::get('poniverse.urls')['register']);
|
|
}
|
|
} |