Skip to content

Commit

Permalink
Allow feed_url form to be empty to trigger auto discovery.
Browse files Browse the repository at this point in the history
  • Loading branch information
tibonihoo committed May 31, 2019
1 parent 08c7c7c commit b950051
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wom_user/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ class UserSourceAdditionForm(forms.Form):
required=False,
widget=forms.TextInput(
attrs={"class":"form-control"}))
feed_url = forms.CharField(max_length=URL_MAX_LENGTH, required=True,
feed_url = forms.CharField(max_length=URL_MAX_LENGTH, required=False,
widget=forms.TextInput(
attrs={"class":"form-control"}))

Expand Down

0 comments on commit b950051

Please sign in to comment.