summaryrefslogtreecommitdiff
path: root/app/Model/ActionModel.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Model/ActionModel.php')
-rw-r--r--app/Model/ActionModel.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/app/Model/ActionModel.php b/app/Model/ActionModel.php
index 53393ed5..b5d2bd06 100644
--- a/app/Model/ActionModel.php
+++ b/app/Model/ActionModel.php
@@ -86,6 +86,18 @@ class ActionModel extends Base
}
/**
+ * Get the projectId by the actionId
+ *
+ * @access public
+ * @param integer $action_id
+ * @return integer
+ */
+ public function getProjectId($action_id)
+ {
+ return $this->db->table(self::TABLE)->eq('id', $action_id)->findOneColumn('project_id') ?: 0;
+ }
+
+ /**
* Attach parameters to actions
*
* @access private