Skip to content
Snippets Groups Projects
stateProcess.js 280 B
import("system.neon");
import("system.result");
import("system.project");

var isTeamsEnabled = project.getInstanceConfigValue(teamsIsEnabled, null);

if(isTeamsEnabled)
{
    result.string(neon.COMPONENTSTATE_EDITABLE);
}
else
{
    result.string(neon.COMPONENTSTATE_DISABLED);
}