diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a4d0d8f86..c06babae56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ # Changelog +- Updated seeds.rb file for identifier_schemes to include context value and removed logo_url and idenitifier_prefix for Shibboleth (as it was causing issues with SSO). [#3525](https://github.com/DMPRoadmap/roadmap/pull/3525) - Adjustments to style of select tags and plan download layout [#3509](https://github.com/DMPRoadmap/roadmap/pull/3509) - Fix failing eslint workflow / upgrade `actions/checkout` & `actions/setup-node` to v3 [#3503](https://github.com/DMPRoadmap/roadmap/pull/3503) - Fix rendering of `confirm_merge` partial [#3515](https://github.com/DMPRoadmap/roadmap/pull/3515) diff --git a/db/seeds.rb b/db/seeds.rb index 8b4edfc3aa..21f84bdfb2 100755 --- a/db/seeds.rb +++ b/db/seeds.rb @@ -25,15 +25,15 @@ description: 'ORCID', active: true, logo_url:'http://orcid.org/sites/default/files/images/orcid_16x16.png', - identifier_prefix:'https://orcid.org' + identifier_prefix:'https://orcid.org', + context: 25 }, { name: 'shibboleth', description: 'Your institutional credentials', active: true, - logo_url: 'http://newsite.shibboleth.net/wp-content/uploads/2017/01/Shibboleth-logo_2000x1200-1.png', - identifier_prefix: "https://example.com" - }, + context: 11 + } ] identifier_schemes.each { |is| IdentifierScheme.find_or_create_by(is) }