Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2016-02-06 | Update Auth controller to work with recent MVC redesign (HEAD^^) | Malf Furious | 1 | -16/+4 | |
2016-02-01 | Implement 'login' action on Auth MVC | Malf Furious | 1 | -0/+10 | |
Finished initial functionality for Auth MVC by implementing the login feature | |||||
2016-01-31 | Log in on signup success | Malf Furious | 1 | -1/+9 | |
Now, on a successful submission of the signup view form (Auth MVC), the app automatically logs in the newly-created user and redirects to Framework::ap() . "/". Placeholder code has been added to the root controller to simply var_dump() the current logged in user if one exists, otherwise the login view (Auth MVC) is shown | |||||
2016-01-31 | Merge Auth MVC, initial_signup action into signup | Malf Furious | 1 | -7/+1 | |
There was a mistake that caused the page notice about no accounts existing to sometimes not showup in error. This merge resolves that issue as well as tidys up the code a bit. | |||||
2016-01-30 | Implement signup_submit action on Auth MVC | Malf Furious | 1 | -0/+10 | |
Submissions to the Auth signup page are now fully handled by either creating a new account (User object in the system) or posting an error message to the page (Auth model) | |||||
2016-01-28 | Finish signup and initialSignup actions on Auth MVC | Malf Furious | 1 | -2/+20 | |
If no accounts exist no login page will be shown. Instead, the app presents the signup page to allow the administrator to create his account. This is the only case where a new account should be an admin by default. | |||||
2016-01-03 | * Hooked the Auth MVC from the Root controller | Malf Furious | 1 | -1/+6 | |
2016-01-03 | + Added controller for new MVC "Auth" | Malf Furious | 1 | -0/+33 | |
2015-12-18 | ! Review of app/ directory for merging upstream to dev has been ↵ | Malf Furious | 1 | -0/+3 | |
completed..... whew + Added some TODO comments for later development | |||||
2015-12-06 | * Implemented the "save" action for MVC sysconf | M | 1 | -1/+17 | |
2015-12-05 | * Now normalizing the $argv array in the root app controller | M | 1 | -0/+2 | |
2015-11-22 | * Placeholder message for site content | M | 1 | -0/+2 | |
2015-11-22 | * Derp, default is a reserved word, calling the function 'deflt' instead | M | 1 | -1/+1 | |
* Removed explicit call to parent constructor in model class, since that function is not explicitly defined | |||||
2015-11-22 | * Root controller is now asserting the existence of scrott.conf.php and ↵ | M | 1 | -2/+8 | |
delegating to the correct mvc if it is missing | |||||
2015-11-22 | + Added controller for SysConf MVC | M | 1 | -0/+27 | |
2015-11-22 | * Bug fix in normalizeArgv function | M | 1 | -3/+5 | |
2015-11-22 | + Added function to root controller for normalizing the $argv array | M | 1 | -0/+32 | |
2015-11-21 | + Added app root controller | M | 1 | -0/+20 | |
* Finished implementing app main function to instanciate root and delegate to it |