More minor updates

This commit is contained in:
Deon George
2014-10-10 16:35:02 +11:00
parent 9302b51ebb
commit f7567dc250
4 changed files with 18 additions and 12 deletions

View File

@@ -10,9 +10,11 @@
* @license http://dev.leenooks.net/license.html
*/
abstract class lnApp_Controller_User_Account extends Controller_Account {
protected $auth_required = TRUE;
protected $secure_actions = array(
'edit'=>TRUE,
'resetpassword'=>TRUE,
'edit'=>0,
'resetpassword'=>0,
);
/**

View File

@@ -12,6 +12,10 @@
abstract class lnApp_Controller_User_Welcome extends Controller_Welcome {
protected $auth_required = TRUE;
protected $secure_actions = array(
'index'=>0,
);
public function action_index() {
throw HTTP_Exception::factory(500,'Site not setup!');
}