Skip to content

Commit

Permalink
maint: Remove unused preverified_verification_enabled flag
Browse files Browse the repository at this point in the history
This was removed from the server long ago
  • Loading branch information
tux3 committed Dec 3, 2024
1 parent f696355 commit e1ca0e9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion modules/admin/include/Tanker/Admin/Client.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ struct App
struct AppUpdateOptions
{
std::optional<std::vector<OidcConfiguration>> oidcProviders;
std::optional<bool> preverifiedVerification;
};

void from_json(nlohmann::json const& j, OidcConfiguration& oidcConfig);
Expand Down
2 changes: 0 additions & 2 deletions modules/admin/src/Client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,6 @@ tc::cotask<App> Client::update(Trustchain::TrustchainId const& trustchainId, App
body["oidc_providers"] = providersJson;
}

if (options.preverifiedVerification)
body["preverified_verification_enabled"] = *options.preverifiedVerification;

auto const message = body.dump();

Expand Down

0 comments on commit e1ca0e9

Please sign in to comment.