Skip to content
This repository has been archived by the owner on Oct 6, 2024. It is now read-only.

Commit

Permalink
remove unnecessary migration files
Browse files Browse the repository at this point in the history
  • Loading branch information
sebgrebe committed Apr 3, 2024
1 parent 851a9ee commit 7fcb112
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 74 deletions.

This file was deleted.

4 changes: 2 additions & 2 deletions eahub/localgroups/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from django.contrib.auth.decorators import login_required
from django.contrib.sites.shortcuts import get_current_site
from django.core.exceptions import PermissionDenied
from django.core.mail import EmailMultiAlternatives, send_mail, EmailMessage
from django.core.mail import EmailMultiAlternatives, send_mail
from django.http import Http404, HttpResponse
from django.shortcuts import get_object_or_404, redirect
from django.template.loader import render_to_string
Expand Down Expand Up @@ -145,7 +145,7 @@ def form_valid(self, form):
}
)

email = EmailMessage(
email = EmailMultiAlternatives(
f"{sender_name} sent you a message",
message,
settings.DEFAULT_FROM_EMAIL,
Expand Down
48 changes: 0 additions & 48 deletions eahub/profiles/migrations/0029_auto_20240331_1457.py

This file was deleted.

3 changes: 0 additions & 3 deletions eahub/tests/e2e/test_signup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ def test_signup(self):
user_email = "[email protected]"
user_password = "Wa4@;fh>A/~W#6SH"

print("LIVE SERVER URL")
print(self.live_server_url)

self.selenium.get(self.live_server_url)

self.find("#signup-btn").click()
Expand Down

0 comments on commit 7fcb112

Please sign in to comment.