core/node_modules/c9/ci-helpers.js
2016-06-26 13:53:19 +02:00

14 lines
320 B
JavaScript

// These users don't have backups made of their workspaces and if they are supposed to be archived they are deleted instead.
var CI_TEMP_USERS = [
733399, // branches
]
var ciHelper = {
isTempUser: function (userId) {
return CI_TEMP_USERS.indexOf(userId) >= 0;
}
}
module.exports = ciHelper;