This is the controller action list which should display users in a user table if a user role is not super
public function actionList()
{
$dataProvider = new ActiveDataProvider([
'query'=>User::find()->where(['not', 'is_super']),
'pagination' => [
'pageSize' => 20,
],
]);
return $this->render('list', ['dataProvider'=>$dataProvider]);
}
What could be the problem
not? Is it column name?