diff --git a/changelog.md b/changelog.md index 4141ab8..27e969b 100644 --- a/changelog.md +++ b/changelog.md @@ -9,6 +9,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Fixed + +- Create resources missing `open` param + +### Added + +- More documentation + ## [7.3.0] - 2024-02-12 ### Added diff --git a/commands/coldbox/create/resource.cfc b/commands/coldbox/create/resource.cfc index 2aec4d7..4d65a36 100644 --- a/commands/coldbox/create/resource.cfc +++ b/commands/coldbox/create/resource.cfc @@ -70,6 +70,9 @@ component extends="coldbox-cli.models.BaseCommand" { * @specsDirectory Your specs directory. Only used if tests is true * @api If true, this will generate api resources, else normal html resources * @force Force the generation of the resource, even if it exists + * @migration Generate the cfmigrations for the entities + * @seeder Generate a mock data seeder for the entitites + * @open Open the resources once created */ function run( required resource, @@ -95,7 +98,8 @@ component extends="coldbox-cli.models.BaseCommand" { boolean api = false, boolean force = false, boolean migration = false, - boolean seeder = false + boolean seeder = false, + boolean open = false ){ // Normalize paths arguments.specsDirectory = resolvePath( arguments.specsDirectory );