Simon Connah
unread,Apr 2, 2023, 10:27:01 AM4/2/23Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django...@googlegroups.com
Hi,
I want to make a blogging platform and have a question about organising the project.
With my blog, I'll have the blog in one Django app and then have something like a forum in another app, along with additional functions in other apps. Also, I'd like to have a single-user system that uses AbstractUser (or AbstractBaseUser).
So how do all apps require my AbstractUser class for authentication, and then the other apps be added or removed based on what is needed for each site? I want to split auth from the rest project.
Thanks!