Skip to content

Commit

Permalink
Merge pull request #76 from CuBoulder/issue/74
Browse files Browse the repository at this point in the history
Updates site affiliation (v2.10)
  • Loading branch information
jcsparks authored and web-flow committed Dec 11, 2024
2 parents d60a340 + e6c05bb commit 678e9c6
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- ### Updates site affiliation (v2.10)
This update renames _Office of Integrity, Safety and Compliance_ to _Office of Compliance, Ethics and Policy_, and adds a URL to this affiliation.

[change] Resolves CuBoulder/ucb_site_configuration#74
---

- ### Adds Sidebar color options
Options for sidebar menu styles added. Default is the current D10 Gold, and the light gray option mimics the D7 style

Expand Down
4 changes: 2 additions & 2 deletions config/install/ucb_site_configuration.configuration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@ site_affiliation_options:
label: 'Office of Institutional Equity'
type_restricted: false
integrity_safety_compliance:
url: ''
label: 'Office of Integrity, Safety and Compliance'
url: 'https://www.colorado.edu/compliance'
label: 'Office of Compliance, Ethics and Policy'
type_restricted: false
strategic_relations_comm:
url: 'https://www.colorado.edu/strategicrelations'
Expand Down
2 changes: 1 addition & 1 deletion ucb_site_configuration.info.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: CU Boulder Site Configuration
description: 'Allows CU Boulder site administrators to configure site-specific settings.'
core_version_requirement: ^9 || ^10
type: module
version: '2.9.1'
version: '2.10'
package: CU Boulder
dependencies:
- block
Expand Down
16 changes: 16 additions & 0 deletions ucb_site_configuration.install
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,8 @@ function ucb_site_configuration_update_9507() {
}

/**
* Updates a site affiliation.
*
* Renames Infrastructure and Sustainability to Infrastructure and Resilience.
*
* Introduced in version 2.9 to address issue #65.
Expand All @@ -142,3 +144,17 @@ function ucb_site_configuration_update_9508() {
'site_affiliation_options',
]);
}

/**
* Updates a site affiliation.
*
* Renames Office of Integrity, Safety and Compliance to Office of Compliance,
* Ethics and Policy, and adds a URL to this affiliation.
*
* Introduced in version 2.10 to address issue #74.
*/
function ucb_site_configuration_update_9509() {
_ucb_site_configuration_update_config([
'site_affiliation_options',
]);
}

0 comments on commit 678e9c6

Please sign in to comment.