From 094327bc906cdeced19a52c86dc0725aad773997 Mon Sep 17 00:00:00 2001 From: Christian Blättler Date: Tue, 21 Nov 2023 08:06:00 +0100 Subject: POST /tokenfamilies endpoint --- src/backenddb/plugin_merchantdb_postgres.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/backenddb/plugin_merchantdb_postgres.c') diff --git a/src/backenddb/plugin_merchantdb_postgres.c b/src/backenddb/plugin_merchantdb_postgres.c index 1f1f54c6..90586561 100644 --- a/src/backenddb/plugin_merchantdb_postgres.c +++ b/src/backenddb/plugin_merchantdb_postgres.c @@ -147,6 +147,8 @@ #include "pg_activate_reserve.h" #include "pg_authorize_reward.h" #include "pg_insert_pickup.h" +#include "pg_insert_token_family.h" +#include "pg_lookup_token_family.h" /** @@ -601,6 +603,12 @@ libtaler_plugin_merchantdb_postgres_init (void *cls) = &TMH_PG_select_accounts_by_exchange; plugin->insert_exchange_account = &TMH_PG_insert_exchange_account; + plugin->insert_token_family + = &TMH_PG_insert_token_family; + plugin->lookup_token_family + = &TMH_PG_lookup_token_family; + + return plugin; } -- cgit v1.2.3