fix update column
This commit is contained in:
parent
525dbda657
commit
822c1c8339
@ -170,7 +170,7 @@ class ProjectColumnController extends ApiController
|
|||||||
* ),
|
* ),
|
||||||
* )
|
* )
|
||||||
*
|
*
|
||||||
* @return ProjectColumn|null
|
* @return array|ProjectColumn|\yii\db\ActiveRecord|null
|
||||||
* @throws BadRequestHttpException
|
* @throws BadRequestHttpException
|
||||||
* @throws \yii\base\InvalidConfigException
|
* @throws \yii\base\InvalidConfigException
|
||||||
*/
|
*/
|
||||||
@ -181,7 +181,7 @@ class ProjectColumnController extends ApiController
|
|||||||
throw new BadRequestHttpException(json_encode(['Column not found']));
|
throw new BadRequestHttpException(json_encode(['Column not found']));
|
||||||
}
|
}
|
||||||
|
|
||||||
$column = ProjectColumn::find()->where(['id' => $column_id, 'status' => ProjectColumn::STATUS_ACTIVE]);
|
$column = ProjectColumn::find()->where(['id' => $column_id, 'status' => ProjectColumn::STATUS_ACTIVE])->one();
|
||||||
|
|
||||||
$put = array_diff(\Yii::$app->request->getBodyParams(), [null, '']);
|
$put = array_diff(\Yii::$app->request->getBodyParams(), [null, '']);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user