I would like to find all the news(actus) about a followed user when a customer is connected.
I created these tables
User
id
username
created
Follows
id
user_id
follow_id
Actus
id
user_id
content
created
Model User is linked to Follow and Actu by a Hasmany jointure
I try this but it doesn't seem to work
$this->Follow->find('all', array(
'conditions' => array('Follow.user_id' => $this->Session->read('Auth.User.id')),
'contain' => array('User' => array('Actu','conditions'=>array('User.id = Follow.follow_id')))));
someone can help me please?
Thank you in advance
