Skip to content

Commit

Permalink
Merge pull request #203 from openedx/eahmadjaved/ENT-9301
Browse files Browse the repository at this point in the history
feat: Added a search feature on skill field in CourseSkills
  • Loading branch information
jajjibhai008 authored Aug 23, 2024
2 parents a5b1598 + 884cb31 commit fa41dc7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ Change Log
Unreleased

[1.52.0] - 2024-08-22
---------------------
* feat: Added a search feature on skill field in CourseSkills

[1.51.1] - 2024-08-21
---------------------
* feat: Added safeguard for nulls before saving job description
Expand Down
2 changes: 1 addition & 1 deletion taxonomy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
# 2. MINOR version when you add functionality in a backwards compatible manner, and
# 3. PATCH version when you make backwards compatible bug fixes.
# More details can be found at https://semver.org/
__version__ = '1.51.1'
__version__ = '1.52.0'

default_app_config = 'taxonomy.apps.TaxonomyConfig' # pylint: disable=invalid-name
1 change: 1 addition & 0 deletions taxonomy/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ class CourseSkillsTitleAdmin(admin.ModelAdmin):

list_display = ('id', 'course_key', 'created', 'modified')
search_fields = ('course_key',)
autocomplete_fields = ['skill']


@admin.register(Job)
Expand Down

0 comments on commit fa41dc7

Please sign in to comment.