ngresttest\models\Table::ngRestConfig PHP Method

ngRestConfig() public method

Define the NgRestConfig for this model with the ConfigBuilder object.
public ngRestConfig ( luya\admin\ngrest\ConfigBuilder $config ) : luya\admin\ngrest\ConfigBuilder
$config luya\admin\ngrest\ConfigBuilder The current active config builder object.
return luya\admin\ngrest\ConfigBuilder
    public function ngRestConfig($config)
    {
        // define fields for types based from ngrestAttributeTypes
        $this->ngRestConfigDefine($config, 'list', ['image']);
        $this->ngRestConfigDefine($config, ['create', 'update'], ['image']);
        // enable or disable ability to delete;
        $config->delete = false;
        return $config;
    }