Changes between Version 3 and Version 4 of ContribEmailAuth


Ignore:
Timestamp:
Sep 18, 2013, 2:35:56 PM (11 years ago)
Author:
lukesneringer
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ContribEmailAuth

    v3 v4  
    3333 * Requires installing an additional app besides django.contrib.auth.
    3434
     35== Option 2: The authtools approach ==
     36
     37This option is similar to https://django-authtools.readthedocs.org/en/latest/. The idea would be to create a separate app that houses admin, views, etc., that are analogous to the ones that support User in django.contrib.auth.
     38
     39=== Advantages ===
     40
     41 * Allows for other, potentially more sweeping alterations if desired (e.g. authtools combines first_name and last_name).
     42
     43=== Disadvantages ===
     44
     45  * More code duplication
     46  * Doesn't really follow principle of least surprise. Ideally, the email-based User should behave exactly like the stock User, with this one exception.
     47
    3548== Final decision ==
    3649
Back to Top