summaryrefslogtreecommitdiff
path: root/src/kyclogic/kyclogic_api.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2022-10-02 23:57:09 +0200
committerChristian Grothoff <christian@grothoff.org>2022-10-02 23:57:09 +0200
commit3bca75d6cfb4c28e9800198d606ae030930e126b (patch)
treec513269ca21a09d3b95c03ea5c24abed939b4d1c /src/kyclogic/kyclogic_api.c
parent1ce70b1dabb390d04b3b886816e49237288b9b31 (diff)
downloadexchange-3bca75d6cfb4c28e9800198d606ae030930e126b.tar.gz
exchange-3bca75d6cfb4c28e9800198d606ae030930e126b.tar.bz2
exchange-3bca75d6cfb4c28e9800198d606ae030930e126b.zip
complete taler-exchange-httpd_reserves_get_attest.c logic (first pass, still without DB logic or tests)
Diffstat (limited to 'src/kyclogic/kyclogic_api.c')
-rw-r--r--src/kyclogic/kyclogic_api.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/kyclogic/kyclogic_api.c b/src/kyclogic/kyclogic_api.c
index b04c24194..0c4a51124 100644
--- a/src/kyclogic/kyclogic_api.c
+++ b/src/kyclogic/kyclogic_api.c
@@ -1311,4 +1311,18 @@ TALER_KYCLOGIC_kyc_iterate_thresholds (
}
+enum TALER_ErrorCode
+TALER_KYCLOGIC_user_to_attributes (const char *provider_section,
+ const char *provider_user_id,
+ const char *legitimization_id,
+ struct GNUNET_TIME_Timestamp *attr_expiration,
+ json_t **attrs)
+{
+ GNUNET_break (0); // FIXME: not yet implemented!!!
+ *attrs = json_object ();
+ *attr_expiration = GNUNET_TIME_UNIT_ZERO_TS;
+ return TALER_EC_NONE;
+}
+
+
/* end of taler-exchange-httpd_kyc.c */