/**
  * Lists all Attachments models
  * @return string
  * @throws ForbiddenHttpException
  */
 public function actionIndex()
 {
     // Check RBAC Permission
     if ($this->userCanIndex()) {
         $searchModel = new AttachmentsSearch();
         $dataProvider = $searchModel->search(Yii::$app->request->queryParams);
         return $this->render('index', ['searchModel' => $searchModel, 'dataProvider' => $dataProvider]);
     } else {
         throw new ForbiddenHttpException();
     }
 }
 /**
  * Lists all Attachments models.
  * @return mixed
  */
 public function actionIndex()
 {
     $searchModel = new AttachmentsSearch();
     $dataProvider = $searchModel->search(Yii::$app->request->queryParams);
     return $this->render('index', ['searchModel' => $searchModel, 'dataProvider' => $dataProvider]);
 }