(version)
| 98 | |
| 99 | // Return true if the shortname in the conditional is supported (fpt, ghec, ghes, ghae, all feature names). |
| 100 | function validateVersion(version) { |
| 101 | return ( |
| 102 | allowedVersionNames.includes(version) || |
| 103 | // TODO - REMOVE THE FOLLOWING 'OR' WHEN GHAE IS UPDATED WITH SEMVER VERSIONING |
| 104 | /ghae-issue-\d{4}/.test(version) |
| 105 | ) |
| 106 | } |
| 107 | |
| 108 | // TODO: Temporary check for presence of deprecated GHAE feature flags in FM. |
| 109 | // See details in docs-internal#29178. |
no outgoing calls
no test coverage detected