summaryrefslogtreecommitdiff
path: root/ishtar_common/models_rest.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2021-10-19 23:02:09 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2022-12-12 12:20:59 +0100
commitfede10bc3ed5a9df9325d3c9d671a167760a9381 (patch)
treec6a83be154a7e11b114939c2f7fd0b978795fdbd /ishtar_common/models_rest.py
parent66ba898ce0797fd51a826f6ea654b87a3487e8bb (diff)
downloadIshtar-fede10bc3ed5a9df9325d3c9d671a167760a9381.tar.bz2
Ishtar-fede10bc3ed5a9df9325d3c9d671a167760a9381.zip
Syndication - update association from match document WIP
Diffstat (limited to 'ishtar_common/models_rest.py')
-rw-r--r--ishtar_common/models_rest.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/ishtar_common/models_rest.py b/ishtar_common/models_rest.py
index 61b3ce042..e29356567 100644
--- a/ishtar_common/models_rest.py
+++ b/ishtar_common/models_rest.py
@@ -63,7 +63,7 @@ class ApiExternalSource(models.Model):
'First use the "Update types from source" action. Then use the action '
'"Generate match document" action to create a default match document. '
"Complete it and attach it back to the source to finally use the action "
- '"Modify association from match document".'
+ '"Update association from match document".'
),
)
@@ -206,6 +206,9 @@ class ApiExternalSource(models.Model):
[1, end_row],
)
+ def update_from_match_document(self):
+ pass
+
class ApiKeyMatch(models.Model):
source = models.ForeignKey(ApiExternalSource, on_delete=models.CASCADE)