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: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

### 2026-02-06

- Make Employee ID a non-required field in profile page.

### 2026-01-29

- docs: The README is updated to include new features and all implementation details relevant to the plugin users.
Expand Down
2 changes: 1 addition & 1 deletion indico_custom_profile_fields/custom_fields.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"name": "employee_id",
"title": "Employee ID",
"input_type": "text",
"is_required": true,
"is_required": false,
"admin_only": true
},
{
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = 'indico-plugin-custom-profile-fields'
description = 'Indico plugin to add admin-defined custom fields to user profiles'
readme = 'README.md'
version = '1.2.0'
version = '1.2.1'
license = 'MIT'
authors = [{ name = 'Doğay Kamar', email = 'dogay.kamar@canonical.com' }]
requires-python = '>=3.12.2, <3.13'
Expand Down
Loading