summaryrefslogtreecommitdiff
path: root/models/action.php
diff options
context:
space:
mode:
authorFrédéric Guillot <fguillot@users.noreply.github.com>2014-04-19 22:12:12 -0400
committerFrédéric Guillot <fguillot@users.noreply.github.com>2014-04-19 22:12:12 -0400
commita04ecbde778decfdea7200806a6b1144861ae05f (patch)
treee4670e3013734d9c7bd201f5d6ef1fbaae13d3b5 /models/action.php
parent5aacb6a76351889a6ec5ed01c8e80f139c2b2027 (diff)
Add RememberMe feature and authentications history
Diffstat (limited to 'models/action.php')
-rw-r--r--models/action.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/models/action.php b/models/action.php
index cc8f5cad..a0236eff 100644
--- a/models/action.php
+++ b/models/action.php
@@ -16,7 +16,18 @@ use \SimpleValidator\Validators;
*/
class Action extends Base
{
+ /**
+ * SQL table name for actions
+ *
+ * @var string
+ */
const TABLE = 'actions';
+
+ /**
+ * SQL table name for action parameters
+ *
+ * @var string
+ */
const TABLE_PARAMS = 'action_has_params';
/**