Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/main/java/io/supertokens/pluginInterface/Storage.java
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,8 @@ boolean isUserIdBeingUsedInNonAuthRecipe(AppIdentifier appIdentifier, String cla
// this function is used during testing in the core so that the core can
// create multiple user pools across any plugin being used.
void modifyConfigToAddANewUserPoolForTesting(JsonObject config, int poolNumber);

// this function returns a list of protected configs which users of supertokens saas can't read or modify
// when they are operating on tenantsm unless the supertokens_saas_secret key is used in the API request.
String[] getProtectedConfigsFromSuperTokensSaaSUsers();
}