Skip to content

Commit

Permalink
Merge pull request #26164 from open-craft/raul/tsd-xblock-select_func…
Browse files Browse the repository at this point in the history
…tion

[TSD] adds annotations for XBLOCK_SELECT_FUNCTION
  • Loading branch information
robrap authored Jan 29, 2021
2 parents 3638005 + 24f528c commit 22a1ad5
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion lms/envs/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -1212,7 +1212,12 @@ def _make_mako_template_dirs(settings):
# once the responsibility of XBlock creation is moved out of modulestore - cpennington
XBLOCK_MIXINS = (LmsBlockMixin, InheritanceMixin, XModuleMixin, EditInfoMixin)

# Allow any XBlock in the LMS
# .. setting_name: XBLOCK_SELECT_FUNCTION
# .. setting_default: prefer_xmodules
# .. setting_description: Function used to select an XBlock from the python package EntryPoints.
# Some alternatives are `prefer_xmodules` and `default_select`. The `prefer_modules` function
# will choose the first "xmodule" if there is one, otherwise, it will act like `default_select`.
# The `default_select` function will simply choose the first match found.
XBLOCK_SELECT_FUNCTION = prefer_xmodules

# .. setting_name: XBLOCK_FIELD_DATA_WRAPPERS
Expand Down

0 comments on commit 22a1ad5

Please sign in to comment.