|
1 | 1 | # Azure Active Directory Changelog
|
2 | 2 |
|
| 3 | +## 2.4 - 2024-08-28 |
| 4 | + |
| 5 | +* Added a new user extra field to save the unique Azure ID (internal UID). |
| 6 | +This requires manually doing the following changes to your database if you are upgrading from v2.3 |
| 7 | +```sql |
| 8 | +INSERT INTO extra_field (extra_field_type, field_type, variable, display_text, default_value, field_order, visible_to_self, visible_to_others, changeable, filter, created_at) VALUES (1, 1, 'azure_uid', 'Azure UID (internal ID)', '', 1, null, null, null, null, '2024-08-28 00:00:00'); |
| 9 | +``` |
| 10 | +* Added a new option to set the order to verify the existing user in Chamilo |
| 11 | +```sql |
| 12 | +INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url, access_url_changeable, access_url_locked) VALUES ('azure_active_directory_existing_user_verification_order', 'azure_active_directory', 'setting', 'Plugins', '', 'azure_active_directory', '', '', '', 1, 1, 0); |
| 13 | +``` |
| 14 | +* Added a new option to update user info during the login proccess. |
| 15 | +```sql |
| 16 | +INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url, access_url_changeable, access_url_locked) VALUES ('azure_active_directory_update_users', 'azure_active_directory', 'setting', 'Plugins', '', 'azure_active_directory', '', '', '', 1, 1, 0); |
| 17 | +``` |
| 18 | +* Added new scripts to syncronize users and groups with users and usergroups (classes). And an option to deactivate accounts in Chamilo that do not exist in Azure. |
| 19 | +```sql |
| 20 | +INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url, access_url_changeable, access_url_locked) VALUES ('azure_active_directory_tenant_id', 'azure_active_directory', 'setting', 'Plugins', '', 'azure_active_directory', '', '', '', 1, 1, 0); |
| 21 | +INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url, access_url_changeable, access_url_locked) VALUES ('azure_active_directory_deactivate_nonexisting_users', 'azure_active_directory', 'setting', 'Plugins', '', 'azure_active_directory', '', '', '', 1, 1, 0); |
| 22 | +``` |
| 23 | + |
3 | 24 | ## 2.3 - 2021-03-30
|
4 | 25 |
|
5 | 26 | * Added admin, session admin and teacher groups. This requires adding the following fields to your database if
|
|
0 commit comments