diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-12-01 22:52:58 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-12-01 22:52:58 -0500 |
commit | f73d0d2ac9daee5eaa03a7b89c639678fec46467 (patch) | |
tree | 130d67dc841de8200361afb393873924caf7378c /app/Event/ProjectFileEvent.php | |
parent | be83821ef7885ca45da36f15ea7a26cbf3e33fd9 (diff) |
Make user mentions great again
Diffstat (limited to 'app/Event/ProjectFileEvent.php')
-rw-r--r-- | app/Event/ProjectFileEvent.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/app/Event/ProjectFileEvent.php b/app/Event/ProjectFileEvent.php index 5d57e463..e1d29c48 100644 --- a/app/Event/ProjectFileEvent.php +++ b/app/Event/ProjectFileEvent.php @@ -4,4 +4,12 @@ namespace Kanboard\Event; class ProjectFileEvent extends GenericEvent { + public function getProjectId() + { + if (isset($this->container['file']['project_id'])) { + return $this->container['file']['project_id']; + } + + return null; + } } |