Transform table to obj on create

This commit is contained in:
Darren Shepherd 2020-03-10 13:30:46 -07:00
parent 02caeafb5d
commit d6c6de17bd

View File

@ -387,6 +387,7 @@ func (s *Store) Create(apiOp *types.APIRequest, schema *types.APISchema, params
}
resp, err = k8sClient.Create(&unstructured.Unstructured{Object: input}, opts)
rowToObject(resp)
return toAPI(schema, resp), err
}