Skip to content

Commit

Permalink
Merge pull request #35056 from dimagi/nh/inbound_only
Browse files Browse the repository at this point in the history
Update comments: ConfigurableAPI is inbound only
  • Loading branch information
kaapstorm authored Aug 29, 2024
2 parents 705f87e + 8c40b15 commit 6a78832
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions corehq/motech/generic_inbound/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,10 @@ class ConfigurableAPI(models.Model):
updated_on = models.DateTimeField(auto_now=True)
name = models.CharField(max_length=255)
description = models.TextField(blank=True, null=True)
# UCR Expression to filter incoming/outgoing requests
# before they are processed/sent
# UCR Expression to filter incoming requests before they are processed
filter_expression = models.ForeignKey(
UCRExpression, on_delete=models.PROTECT, related_name="api_filter", null=True, blank=True)
# UCR Expression to transform the data to be processed/sent
# from the original data received/to be sent
# UCR Expression to transform the incoming data to be processed
transform_expression = models.ForeignKey(
UCRExpression, on_delete=models.PROTECT, related_name="api_expression")
# type of data backend like JSON, HL7 etc
Expand Down

0 comments on commit 6a78832

Please sign in to comment.