mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2025-02-07 22:36:43 +01:00
18 lines
No EOL
375 B
PHP
18 lines
No EOL
375 B
PHP
<?php
|
|
|
|
use App\Http\Controllers\Controller;
|
|
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']);
|
|
}
|
|
} |