Is it possible to hide or filter options for particular fields from the generic POST or PUT forms when viewing the API in a browser?
Some of my objects have a foreign key to a user field and I'd prefer if users couldn't browse through the total list of users on the site. I also have some models where I'd simply prefer to hide a field altogether as it automatically gets set in my save method. I've already hidden these things in the Django admin so I'd like to do the same for the API forms.
Cheers,
Dave