@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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/constants.js +21 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ttahub/common",
3
- "version": "2.2.5",
3
+ "version": "2.2.7",
4
4
  "description": "The purpose of this package is to reduce code duplication between the frontend and backend projects.",
5
5
  "main": "src/index.js",
6
6
  "author": "",
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