in teamcity-invitations-plugin-server/src/main/java/org/jetbrains/teamcity/invitations/TeamCityCoreFacadeImpl.java [129:136]
public <T> T runAsSystem(Supplier<T> action) {
try {
return securityContext.runAsSystem(action::get);
} catch (Throwable throwable) {
ExceptionUtil.rethrowAsRuntimeException(throwable);
return null;
}
}