remove comment

This commit is contained in:
Ben Irvin 2023-05-22 16:53:46 +02:00
parent b9c52652c4
commit 2d8e6d87fd

View File

@ -5,7 +5,6 @@ const { isEmpty } = require('lodash/fp');
const isSsoLocked = async (user) => {
if (!features.isEnabled('sso') || !user) {
// TODO: we should be calling strapi.features.isEnabled("sso") but that's EE code. Should we load it dynamically when EE is enabled? Or add EE code to override this strategy?
return false;
}