feat: release rdbms to production (#45169)
* fix: add cert to email for when all certs are earned * fix: unhide rdbms from production * fix: cert project input field * feat: add cypress tests * fix: message on project pages to lower expectations * fix: update instructions * fix: add quincy's suggestions * fix: add beta label and reorder * fix: utils test * fix: move rdbms to bottom of settings * fix: cypress tests * Apply suggestions from code review Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: only drop seeded users webhook tokens Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
This commit is contained in:
@ -10,7 +10,7 @@ const {
|
||||
getChallengesDirForLang
|
||||
} = require('../../curriculum/getChallenges');
|
||||
|
||||
const { curriculumLocale, deploymentEnv } = envData;
|
||||
const { curriculumLocale } = envData;
|
||||
|
||||
exports.localeChallengesRootDir = getChallengesDirForLang(curriculumLocale);
|
||||
|
||||
@ -38,12 +38,6 @@ exports.replaceChallengeNode = () => {
|
||||
|
||||
exports.buildChallenges = async function buildChallenges() {
|
||||
const curriculum = await getChallengesForLang(curriculumLocale);
|
||||
|
||||
// temp removal of rdbms from production
|
||||
if (deploymentEnv !== 'staging') {
|
||||
delete curriculum['13-relational-databases'];
|
||||
}
|
||||
|
||||
const superBlocks = Object.keys(curriculum);
|
||||
const blocks = superBlocks
|
||||
.map(superBlock => curriculum[superBlock].blocks)
|
||||
|
Reference in New Issue
Block a user