diff --git a/CODEOWNERS b/CODEOWNERS index 997df89358..6377005249 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -73,7 +73,7 @@ go.mod @fleetdm/go # (see website/config/custom.js for DRIs of other paths not listed here) ############################################################################################## /website/views/pages/pricing.ejs @mikermcneil # « CEO is DRI for pricing -/handbook/product/pricing-features-table.yml @mikermcneil # « CEO is current DRI for product marketing (e.g. features table) +/handbook/company/pricing-features-table.yml @mikermcneil # « CEO is current DRI for features table ############################################################################################## # 🦿 Handbook diff --git a/handbook/product/pricing-features-table.yml b/handbook/company/pricing-features-table.yml similarity index 100% rename from handbook/product/pricing-features-table.yml rename to handbook/company/pricing-features-table.yml diff --git a/website/config/custom.js b/website/config/custom.js index 7e0c55d61c..6ba8f6757d 100644 --- a/website/config/custom.js +++ b/website/config/custom.js @@ -138,7 +138,7 @@ module.exports.custom = { // 🫧 Pricing and features // 'website/views/pages/pricing.ejs': '', // « Covered in CODEOWNERS (2023-07-22) - // 'handbook/product/pricing-features-table.yml': '', // « Covered in CODEOWNERS (2023-07-22) + // 'handbook/company/pricing-features-table.yml': '', // « Covered in CODEOWNERS (2023-07-22) // 🫧 Other brandfronts 'README.md': 'mikermcneil',// « GitHub brandfront diff --git a/website/scripts/build-static-content.js b/website/scripts/build-static-content.js index 8846a27ecb..4e6f2adfe9 100644 --- a/website/scripts/build-static-content.js +++ b/website/scripts/build-static-content.js @@ -687,7 +687,7 @@ module.exports = { }, async()=>{ // Validate the pricing table yaml and add it to builtStaticContent.pricingTable. - let RELATIVE_PATH_TO_PRICING_TABLE_YML_IN_FLEET_REPO = 'handbook/product/pricing-features-table.yml';// TODO: Is there a better home for this file? + let RELATIVE_PATH_TO_PRICING_TABLE_YML_IN_FLEET_REPO = 'handbook/company/pricing-features-table.yml'; let yaml = await sails.helpers.fs.read(path.join(topLvlRepoPath, RELATIVE_PATH_TO_PRICING_TABLE_YML_IN_FLEET_REPO)).intercept('doesNotExist', (err)=>new Error(`Could not find pricing table features YAML file at "${RELATIVE_PATH_TO_PRICING_TABLE_YML_IN_FLEET_REPO}". Was it accidentally moved? Raw error: `+err.message)); let pricingTableCategories = YAML.parse(yaml, {prettyErrors: true});