Merge pull request +11401 from c9/delete-branches-containers

Don't backup branches containers
smf-sdk
Tim Robinson 2016-01-05 12:43:11 -05:00
commit 07626193fd
1 zmienionych plików z 14 dodań i 0 usunięć

14
node_modules/c9/ci-helpers.js wygenerowano vendored 100644
Wyświetl plik

@ -0,0 +1,14 @@
// 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;