flush /keys responses if set of auditors changes

This commit is contained in:
Christian Grothoff 2021-06-26 14:56:25 +02:00
parent 5ca0209a5e
commit cac8d9360d
No known key found for this signature in database
GPG Key ID: 939E6BE1E29FC3CC
2 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,6 @@
/* /*
This file is part of TALER This file is part of TALER
Copyright (C) 2020 Taler Systems SA Copyright (C) 2020, 2021 Taler Systems SA
TALER is free software; you can redistribute it and/or modify it under the TALER is free software; you can redistribute it and/or modify it under the
terms of the GNU Affero General Public License as published by the Free Software terms of the GNU Affero General Public License as published by the Free Software
@ -28,6 +28,7 @@
#include "taler_mhd_lib.h" #include "taler_mhd_lib.h"
#include "taler-exchange-httpd_management.h" #include "taler-exchange-httpd_management.h"
#include "taler-exchange-httpd_responses.h" #include "taler-exchange-httpd_responses.h"
#include "taler-exchange-httpd_keys.h"
/** /**
@ -139,6 +140,7 @@ add_auditor (void *cls,
"add auditor"); "add auditor");
return qs; return qs;
} }
TEH_keys_update_states ();
return qs; return qs;
} }

View File

@ -28,6 +28,7 @@
#include "taler_mhd_lib.h" #include "taler_mhd_lib.h"
#include "taler-exchange-httpd_management.h" #include "taler-exchange-httpd_management.h"
#include "taler-exchange-httpd_responses.h" #include "taler-exchange-httpd_responses.h"
#include "taler-exchange-httpd_keys.h"
/** /**
@ -130,6 +131,7 @@ del_auditor (void *cls,
"del auditor"); "del auditor");
return qs; return qs;
} }
TEH_keys_update_states ();
return qs; return qs;
} }