-
Notifications
You must be signed in to change notification settings - Fork 174
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: remove project from app if security token does not exist #468
feat: remove project from app if security token does not exist #468
Conversation
src/redux/actions/projectActions.ts
Outdated
else { | ||
const decryptedProject = { ...project, sourceConnection }; | ||
await projectService.delete(decryptedProject); | ||
dispatch(deleteProjectAction(decryptedProject)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we can only remove project from FoTT tool, but make sure we didn't delete the project file, otherwise, someone can delete others project file with this method.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This isn't removing the project from the app for me when I try to open a project from the home page and I don't have a security token
No description provided.