-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Export reward list of a period - MEED-7487 - Meeds-io/MIPs#154 #611
Conversation
This PR will implement the ability of export reward list of a period.
Quality Gate failedFailed conditions See analysis details on SonarQube Cloud Catch issues before they fail your Quality Gate with our IDE extension SonarQube for IDE |
if (SystemUtils.IS_OS_UNIX) { | ||
FileAttribute<Set<PosixFilePermission>> tempFileAttributes = | ||
PosixFilePermissions.asFileAttribute(PosixFilePermissions.fromString("rw-------")); | ||
return Files.createTempFile(fileName, ".xlsx", tempFileAttributes).toFile(); |
Check failure
Code scanning / SonarCloud
I/O function calls should not be vulnerable to path injection attacks High
PosixFilePermissions.asFileAttribute(PosixFilePermissions.fromString("rw-------")); | ||
return Files.createTempFile(fileName, ".xlsx", tempFileAttributes).toFile(); | ||
} else { | ||
File temp = Files.createTempFile(fileName, ".xlsx").toFile(); |
Check failure
Code scanning / SonarCloud
I/O function calls should not be vulnerable to path injection attacks High
…611) This PR will implement the ability of export reward list of a period.
…611) This PR will implement the ability of export reward list of a period.
…611) This PR will implement the ability of export reward list of a period.
…611) This PR will implement the ability of export reward list of a period.
…611) This PR will implement the ability of export reward list of a period.
…611) This PR will implement the ability of export reward list of a period.
This PR will implement the ability of export reward list of a period.