/**
  * Overview of all messages
  * Used by MailNotificationWidget to display all recent messages
  */
 public function actionNotificationList()
 {
     $query = ServicesUserMessage::find();
     $query->joinWith('services_message');
     $query->where(['services_user_message.user_id' => Yii::$app->user->id]);
     $query->orderBy('services_message.updated_at DESC');
     $query->limit(5);
     return $this->renderAjax('notificationList', array('userMessages' => $query->all()));
 }