Example #1
0
 /**
  * Lists all UserRole models.
  * @return mixed
  */
 public function actionIndex()
 {
     Yii::$app->user->setReturnUrl(['/' . $this->getRoute()]);
     $query = User::find()->byTenant()->hasAuth()->orderBy('username');
     return $this->render('index', ['dataProvider' => new ActiveDataProvider(['query' => $query, 'pagination' => ['pageSize' => 10]])]);
 }