Re: Feature Request: Allow Serialize Foreign Keys as Ids

2023-08-05 Thread Curtis Maloney
On Sat, 5 Aug 2023, at 06:47, Ryan Gartin wrote: > You are correct state_id is not a field on the model, state is, and using > “state” in the field lists works. > > I would like to propose that if ‘state_id’ is a valid property on the > queryset (and in the database) that is should be

Re: Sync and Async versions of the same function: guidelines for contributors

2023-08-05 Thread Jon Janzen
Hey there, > Not that much with a 50 lines function. that could easily become a maintenance burden. > what do you think about code duplication of async function ? (please point me to existing threads if the discussion already occurred) I flagged this problem in

Sync and Async versions of the same function: guidelines for contributors

2023-08-05 Thread Olivier Tabone
Hi all, While working on async related tickets (eg #34717, and more recently #34757) I noticed code duplication between sync and async version of same functions: some examples: (no personal offense ❤️) - acheck_password / check_password in base_user.py

Re: Feature Request: Allow Serialize Foreign Keys as Ids

2023-08-05 Thread Vansh NaiK
How toh hack account On Saturday, 5 August 2023 at 02:17:12 UTC+5:30 Ryan Gartin wrote: > You are correct state_id is not a field on the model, state is, and using “ > state” in the field lists works. > > I would like to propose that if ‘state_id’ is a valid property on the > queryset (and in