Skip to content
This repository has been archived by the owner on Aug 5, 2021. It is now read-only.

Commit

Permalink
Fixes a bug that breaks API calls like mv
Browse files Browse the repository at this point in the history
  • Loading branch information
Morgan Rodgers committed Jan 11, 2019
1 parent eb6af3f commit 1481606
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Expand Up @@ -6,6 +6,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [1.5.1] - 2019-01-11
### Fixed
- Fixed whitelist bug that broke API calls

## [1.5.0] - 2018-12-19
### Added
Expand Down Expand Up @@ -103,7 +106,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Added
- Initial Release!

[Unreleased]: https://github.com/OSC/ood-fileexplorer/compare/v1.5.0...HEAD
[Unreleased]: https://github.com/OSC/ood-fileexplorer/compare/v1.5.1...HEAD
[1.5.1]: https://github.com/OSC/ood-fileexplorer/compare/v1.5.0...v1.5.1
[1.5.0]: https://github.com/OSC/ood-fileexplorer/compare/v1.4.1...v1.5.0
[1.4.1]: https://github.com/OSC/ood-fileexplorer/compare/v1.4.0...v1.4.1
[1.4.0]: https://github.com/OSC/ood-fileexplorer/compare/v1.3.6...v1.4.0
Expand Down
2 changes: 1 addition & 1 deletion app.js
Expand Up @@ -265,7 +265,7 @@ app.use(cloudcmd({
fileexplorer_version: app_version,
// function that accepts a path and returns true or false
// FIXME: whitelist would be better as a function that has some properties!
whitelist: whitelist
whitelist: whitelist.enabled() ? whitelist : null
}
}));

Expand Down

0 comments on commit 1481606

Please sign in to comment.