Skip to content

Commit

Permalink
### Fixed
Browse files Browse the repository at this point in the history
- Create resources missing `open` param

### Added

- More documentation
  • Loading branch information
lmajano authored Mar 20, 2024
1 parent cdbb3fa commit 3ab718d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
8 changes: 8 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 5 additions & 1 deletion commands/coldbox/create/resource.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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 );
Expand Down

0 comments on commit 3ab718d

Please sign in to comment.