We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The file object was created after we added announced interceptions for various file operations.
For example, consider the cbfsOnFileCreate interception. The listener signature looks like this.
function cbfsOnFileCreate( path, contents, visibility, metadata, overwrite, mode, disk ) { }
This can be greated simplified now that we have a file object that pass around.
function cbfsOnFileCreate( file ) { }
The text was updated successfully, but these errors were encountered:
Merge pull request #43 from coldbox-modules/feature/CBFS-38
74578d1
#38 Pass file object where it makes sense for announced interceptions
grantcopley
No branches or pull requests
The file object was created after we added announced interceptions for various file operations.
For example, consider the cbfsOnFileCreate interception. The listener signature looks like this.
This can be greated simplified now that we have a file object that pass around.
The text was updated successfully, but these errors were encountered: