Merge pull request #78 from Shumatsu/no-powershell

Ban of .com and .ps1 uploads
This commit is contained in:
Kana 2018-03-15 03:58:40 -03:00 committed by GitHub
commit 46bf0da5ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -35,10 +35,14 @@ module.exports = {
// Add file extensions here which should be blocked
blockedExtensions: [
'.jar',
'.exe',
'.msi',
'.com',
'.bat',
'.cmd',
'.msi',
'.scr',
'.ps1',
'.sh'
],