summaryrefslogtreecommitdiffstats
path: root/app/model/auth.mod.php
diff options
context:
space:
mode:
authorMalf Furious <m@lfurio.us>2016-01-03 12:47:30 -0500
committerMalf Furious <m@lfurio.us>2016-01-03 12:47:30 -0500
commit735230c9125314e5a185e82c57cac0ad2e11b996 (patch)
treed449a0221696d97f6ac0e4775ab4688b5720b99b /app/model/auth.mod.php
parent5b9f9aa34f0fbfa4de741047c51d7ba46482b7e9 (diff)
downloadscrott-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.php15
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()
+ {
+ }
+}
+
+?>