drkane / datasette-reconcile

Adds a reconciliation API endpoint to Datasette, based on the Reconciliation Service API specification.
MIT License
22 stars 6 forks source link

fts_table setting is ignored #28

Closed nicokant closed 5 months ago

nicokant commented 7 months ago

The fts_table setting in the metadata.json is ignored, the plugin uses db.fts_table(table) which does introspection to find fts tables.

example:

{
    "databases": {
        "common": {
            "tables": {
                "species": {
                    "fts_table": "species_fts",
                    "plugins": {
                        "datasette-reconcile": {
                            "name_field": "ValidScientificName"
                        }
                    }
                }
            }
        }
    }
}