Skip to content

Commit

Permalink
Merge pull request #42 from jeff-chastain/add-module-config
Browse files Browse the repository at this point in the history
Update ModuleConfig.cfc
  • Loading branch information
jclausen authored Sep 21, 2023
2 parents 6a6cd41 + 86f7365 commit 6f8d5d6
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions ModuleConfig.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,19 @@
component {

// Module Properties
this.title = "Amazon S3 SDK";
this.author = "Ortus Solutions, Corp";
this.webURL = "https://www.ortussolutions.com";
this.description = "This SDK will provide you with Amazon S3 connectivity for any ColdFusion (CFML) application.";
// We will map the models
this.autoMapModels = false;
this.title = "Amazon S3 SDK";
this.author = "Ortus Solutions, Corp";
this.webURL = "https://www.ortussolutions.com";
this.description = "This SDK will provide you with Amazon S3 connectivity for any ColdFusion (CFML) application.";

// Module Entry Point
this.entryPoint = "s3sdk";
// Model Namespace
this.modelNamespace = "s3sdk";
// CF Mapping
this.cfmapping = "s3sdk";
// Auto-map models
this.autoMapModels = false;

/**
* Configure
Expand Down

0 comments on commit 6f8d5d6

Please sign in to comment.