Skip to content

Commit 61edd41

Browse files
committed
Make new patch creation form actually save newly entered data
In fc16044 the patch creation form was based on the edit form. This worked fine, but the newly added fields were not actually saved in the database (oops). This fixes that. Related to #16
1 parent ae0969f commit 61edd41

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

pgcommitfest/commitfest/models.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ class Patch(models.Model, DiffableModel):
141141

142142
# Datestamps for tracking activity
143143
created = models.DateTimeField(blank=False, null=False, auto_now_add=True)
144-
modified = models.DateTimeField(blank=False, null=False)
144+
modified = models.DateTimeField(blank=False, null=False, auto_now_add=True)
145145

146146
# Materialize the last time an email was sent on any of the threads
147147
# that's attached to this message.

pgcommitfest/commitfest/views.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -566,11 +566,7 @@ def newpatch(request, cfid):
566566
if request.method == "POST":
567567
form = NewPatchForm(data=request.POST)
568568
if form.is_valid():
569-
patch = Patch(
570-
name=form.cleaned_data["name"], topic=form.cleaned_data["topic"]
571-
)
572-
patch.set_modified()
573-
patch.save()
569+
patch = form.save()
574570
poc = PatchOnCommitFest(
575571
patch=patch, commitfest=cf, enterdate=datetime.now()
576572
)

0 commit comments

Comments
 (0)