Re: Why was auth re-invented? What was missing in django?

2018-01-19 Thread Xavier Ordoquy
Le vendredi 19 janvier 2018 09:44:52 UTC+1, Thomas Güttler a écrit : > > Why was auth re-invented in Django-Rest-Framework? > What was missing in django? > I don't know the initial reasons but from my experience, Django has a couple of non obvious implicit constraints on the authentication / p

Re: Why was auth re-invented? What was missing in django?

2018-01-19 Thread Jason
Knowing some of the backstory would be nice for me as well However, why this wasn't ported to Django core as a whole? Most likely because it broke things on that side and django-core developers weren't able to integrate while maintaining compatibility with other parts of the project. -- You

Using "rounding" on a DecimalField

2018-01-19 Thread akrier
Hey all! We recently discovered "rounding" for the DecimalField type (DecimalField API ) and thought it was a perfect option to use for rounding latitude and longitude fields that may have varying lengths. After multiple impl

Why was auth re-invented? What was missing in django?

2018-01-19 Thread Thomas Güttler
Why was auth re-invented in Django-Rest-Framework? What was missing in django? My problem: We have some APIs which use DRF and some do not use DRF. Everything works. But the design is ugly since we use different solutions for the same goal. This makes our software more complicated and develope