Changes between Initial Version and Version 1 of Ticket #36089


Ignore:
Timestamp:
Jan 12, 2025, 6:42:29 AM (9 hours ago)
Author:
d9pouces
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #36089 – Description

    initial v1  
    1 The ManagementUtility directly uses the get_commands function instead of encapsulating it in a method that could be overridden, for example to exclude some unwanted Django commands.
     1The ManagementUtility directly uses the `get_commands` function instead of encapsulating it in a method that could be overridden, for example to exclude some unwanted Django commands.
    22
    3 To ensure compatibility, the simplest way is to add a method to ManagementUtility that only calls the original get_methods function.
     3To ensure compatibility, the simplest way is to add a `get_management_commands` method to ManagementUtility that only calls the original `get_commands` function.
Back to Top