Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -114,8 +114,8 @@ site_affiliation_options:
label: 'Office of Strategic Initiatives'
type_restricted: false
student_affairs:
url: 'https://www.colorado.edu/studentaffairs'
label: 'Division of Student Affairs'
url: 'https://www.colorado.edu/studentlife'
label: 'Division of Student Life'
type_restricted: false
undergraduate_education:
url: ''
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: ^10 || ^11
type: module
version: '2.11'
version: '2.12'
package: CU Boulder
dependencies:
- block
Expand Down
16 changes: 15 additions & 1 deletion ucb_site_configuration.install
Original file line number Diff line number Diff line change
Expand Up @@ -194,11 +194,25 @@ function ucb_site_configuration_update_9510() {
}

/**
* Updates the Third-party services to add the Goodkind AI chatbot option.
* Updates the Third-party services to add the Goodkind AI chatbot option.
*/

function ucb_site_configuration_update_9511() {
_ucb_site_configuration_update_config([
'external_services',
]);
}

/**
* Updates a site affiliation.
*
* Renames Division of Student Affairs to Division of Student Life,
* and adds a URL to this affiliation.
*
* Introduced in version 2.11 to address issue #1629.
*/
function ucb_site_configuration_update_9512() {
_ucb_site_configuration_update_config([
'site_affiliation_options',
]);
}