diff options
author | Malf Furious <m@lfurio.us> | 2016-01-03 12:47:30 -0500 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2016-01-03 12:47:30 -0500 |
commit | 735230c9125314e5a185e82c57cac0ad2e11b996 (patch) | |
tree | d449a0221696d97f6ac0e4775ab4688b5720b99b /app/model/auth.mod.php | |
parent | 5b9f9aa34f0fbfa4de741047c51d7ba46482b7e9 (diff) | |
download | scrott-735230c9125314e5a185e82c57cac0ad2e11b996.tar.gz scrott-735230c9125314e5a185e82c57cac0ad2e11b996.zip |
+ Added model for Auth MVC
Diffstat (limited to 'app/model/auth.mod.php')
-rw-r--r-- | app/model/auth.mod.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/app/model/auth.mod.php b/app/model/auth.mod.php new file mode 100644 index 0000000..9c356e2 --- /dev/null +++ b/app/model/auth.mod.php @@ -0,0 +1,15 @@ +<?php + +require_once "model/common.mod.php"; + +class AuthModel extends CommonModel +{ + /* + * Default action + */ + function deflt() + { + } +} + +?> |