I am trying to use django channels_presence in my project but my user model is present in another project(microservice architechure) named auth which gives me the error:
channels_presence.Presence.user: (fields.E300) Field defines a relation with model 'auth.User', which is either not installed, or is abstract.
channels_presence.Presence.user: (fields.E307) The field channels_presence.Presence.user was declared with a lazy reference to 'auth.user', but app 'auth' isn't installed.
How do I use channels_presence without User model in the same project?