forked from Fediversity/Fediversity
Remove trailing whitespace
This commit is contained in:
parent
624e354da5
commit
d32e11389c
1 changed files with 9 additions and 6 deletions
|
@ -56,8 +56,11 @@ class ConfigurationForm(LoginRequiredMixin, UpdateView):
|
||||||
obj = self.get_object() # Get instance
|
obj = self.get_object() # Get instance
|
||||||
|
|
||||||
# Save related forms
|
# Save related forms
|
||||||
MastodonConfigForm(self.request.POST, instance=obj.mastodonconfig).save()
|
MastodonConfigForm(self.request.POST,
|
||||||
PixelfedConfigForm(self.request.POST, instance=obj.pixelfedconfig).save()
|
instance=obj.mastodonconfig).save()
|
||||||
PeertubeConfigForm(self.request.POST, instance=obj.peertubeconfig).save()
|
PixelfedConfigForm(self.request.POST,
|
||||||
|
instance=obj.pixelfedconfig).save()
|
||||||
|
PeertubeConfigForm(self.request.POST,
|
||||||
|
instance=obj.peertubeconfig).save()
|
||||||
|
|
||||||
return response
|
return response
|
Loading…
Add table
Reference in a new issue