Код: Выделить всё
class User(UserBase):
class Config:
exclude = ['user_id', 'some_other_field']
Код: Выделить всё
class User(UserBase):
class Config:
fields = {'user_id': {'exclude':True},
'some_other_field': {'exclude':True}
}
Подробнее здесь: https://stackoverflow.com/questions/705 ... from-model
Мобильная версия