Project

Profile

Help

Task #6421

Updated by daviddavis almost 4 years ago

In #6346, we are trying to fix the problem where write_only fields are not showing up in the api schema. We think though that most of the use of write_only fields are unnecessary. In some cases, a serializer with write_only fields can be split in two: one for read operations and one for write operations. In other cases, write_only fields can be converted to SecretCharFields. 

 This task is to go through and try to eliminate write_only field usage when possible. usage. From there we can examine which use cases still require use of write_only fields.

Back