Files
snipe-it/app/controllers/account/DashboardController.php
T
2013-11-13 01:59:39 -05:00

20 lines
314 B
PHP
Executable File

<?php namespace Controllers\Account;
use AuthorizedController;
use Redirect;
class DashboardController extends AuthorizedController {
/**
* Redirect to the profile page.
*
* @return Redirect
*/
public function getIndex()
{
// Redirect to the profile page
return Redirect::route('profile');
}
}