From aefb824d5c82f7df4ab35d46d7119bc3ff391b5a Mon Sep 17 00:00:00 2001 From: iglocska Date: Tue, 25 Dec 2018 14:44:26 +0100 Subject: [PATCH] new: [tag collections] Renamed tagCollectionElement to tagCollectionTag --- app/Model/TagCollectionTag.php | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 app/Model/TagCollectionTag.php diff --git a/app/Model/TagCollectionTag.php b/app/Model/TagCollectionTag.php new file mode 100644 index 000000000..fde336c09 --- /dev/null +++ b/app/Model/TagCollectionTag.php @@ -0,0 +1,31 @@ + array( + 'roleModel' => 'Role', + 'roleKey' => 'role_id', + 'change' => 'full' + ), + 'Containable' + ); + + public $belongsTo = array( + 'TagCollection' => array( + 'className' => 'TagCollection', + ), + 'Tag' => array( + 'className' => 'Tag', + ) + ); + + public $validate = array( + + ); +}