Files
snipe-it/app/controllers/AuthorizedController.php
T
Tamás Roncsák 132578bfe3 Revert "set filemode"
This reverts commit c2a1e39b54.
2015-02-24 09:32:31 +01:00

27 lines
443 B
PHP
Executable File

<?php
class AuthorizedController extends BaseController
{
/**
* Whitelisted auth routes.
*
* @var array
*/
protected $whitelist = array();
/**
* Initializer.
*
* @return void
*/
public function __construct()
{
// Apply the auth filter
$this->beforeFilter('auth', array('except' => $this->whitelist));
// Call parent
parent::__construct();
}
}