Files
snipe-it/app/controllers/account/DashboardController.php
T
2014-06-24 17:49:39 -04:00

20 lines
349 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');
}
}