We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The field created_on is being sent unnecessarily
created_on
weni-integrations-engine/marketplace/wpp_templates/serializers.py
Line 202 in 6a3283e
In TemplateMessage model, the field created_on is it is as follows:
created_on = models.DateTimeField("Created on", editable=False, default=timezone.now)
Note that it itself declares a default value according to the time it was created, so it is unnecessary to send it in objects.create.
objects.create
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The field
created_on
is being sent unnecessarilyweni-integrations-engine/marketplace/wpp_templates/serializers.py
Line 202 in 6a3283e
In TemplateMessage model, the field
created_on
is it is as follows:Note that it itself declares a default value according to the time it was created, so it is unnecessary to send it in
objects.create
.The text was updated successfully, but these errors were encountered: