@ttahub/common 2.2.5 → 2.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/constants.js +21 -3
package/package.json
CHANGED
package/src/constants.js
CHANGED
|
@@ -377,8 +377,16 @@ const DISALLOWED_URLS = [{
|
|
|
377
377
|
}, {
|
|
378
378
|
url: 'https://eclkc.ohs.acf.hhs.gov/cas/login',
|
|
379
379
|
error: 'This link is no longer accepted in this field. Enter iPD courses used during your TTA session in the other field in this section.',
|
|
380
|
-
},
|
|
381
|
-
|
|
380
|
+
},{
|
|
381
|
+
url: 'https://www.eclkc.ohs.acf.hhs.gov/professional-development/individualized-professional-development-ipd-portfolio/course-catalog',
|
|
382
|
+
error: 'This link is no longer accepted in this field. Enter iPD courses used during your TTA session in the other field in this section.',
|
|
383
|
+
}, {
|
|
384
|
+
url: 'https://www.eclkc.ohs.acf.hhs.gov/professional-development/individualized-professional-development-ipd-portfolio/individualized-professional-development-ipd-portfolio',
|
|
385
|
+
error: 'This link is no longer accepted in this field. Enter iPD courses used during your TTA session in the other field in this section.',
|
|
386
|
+
}, {
|
|
387
|
+
url: 'https://www.eclkc.ohs.acf.hhs.gov/cas/login',
|
|
388
|
+
error: 'This link is no longer accepted in this field. Enter iPD courses used during your TTA session in the other field in this section.',
|
|
389
|
+
}, {
|
|
382
390
|
url: 'https://headstart.gov/professional-development/individualized-professional-development-ipd-portfolio/course-catalog',
|
|
383
391
|
error: 'This link is no longer accepted in this field. Enter iPD courses used during your TTA session in the other field in this section.',
|
|
384
392
|
}, {
|
|
@@ -387,7 +395,17 @@ const DISALLOWED_URLS = [{
|
|
|
387
395
|
}, {
|
|
388
396
|
url: 'https://headstart.gov/cas/login',
|
|
389
397
|
error: 'This link is no longer accepted in this field. Enter iPD courses used during your TTA session in the other field in this section.',
|
|
390
|
-
}
|
|
398
|
+
},{
|
|
399
|
+
url: 'https://www.headstart.gov/professional-development/individualized-professional-development-ipd-portfolio/course-catalog',
|
|
400
|
+
error: 'This link is no longer accepted in this field. Enter iPD courses used during your TTA session in the other field in this section.',
|
|
401
|
+
}, {
|
|
402
|
+
url: 'https://www.headstart.gov/professional-development/individualized-professional-development-ipd-portfolio/individualized-professional-development-ipd-portfolio',
|
|
403
|
+
error: 'This link is no longer accepted in this field. Enter iPD courses used during your TTA session in the other field in this section.',
|
|
404
|
+
}, {
|
|
405
|
+
url: 'https://www.headstart.gov/cas/login',
|
|
406
|
+
error: 'This link is no longer accepted in this field. Enter iPD courses used during your TTA session in the other field in this section.',
|
|
407
|
+
}
|
|
408
|
+
];
|
|
391
409
|
|
|
392
410
|
exports.DISALLOWED_URLS = DISALLOWED_URLS;
|
|
393
411
|
|