Skip to content

Commit

Permalink
removes domain
Browse files Browse the repository at this point in the history
  • Loading branch information
actlikewill committed Mar 5, 2024
1 parent 7eb2c83 commit dac9ccb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions peachjam/resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
from django.contrib.auth import get_user_model
from django.contrib.auth.hashers import make_password
from django.contrib.auth.models import Group
from django.contrib.sites.models import Site
from django.core.files.base import File
from django.forms import ValidationError
from django.urls import reverse
Expand Down Expand Up @@ -253,7 +252,8 @@ class BaseDocumentResource(resources.ModelResource):

download_url = fields.Field(readonly=True)

domain = Site.objects.get_current().domain
# domain = Site.objects.get_current().domain
domain = ""

def get_queryset(self):
return self._meta.model.objects.get_qs_no_defer()
Expand Down

0 comments on commit dac9ccb

Please sign in to comment.