Jongbeom Kwon
Jongbeom Kwon
I solved the problem by importing FlexFieldsFilterBackend directly from the settings.py module and inserting it into the backend settings. However, I decided not to use that library due to the...
I am having the same problem. Hope that solves the problem.
I designed the following code by searching. ```python class CustomAutoSchema(AutoSchema): def _get_converted_regex_pattern( self, pattern: str, regex_validator: validators.RegexValidator ): format_string = "(?={})" if not regex_validator.inverse_match else "(?!{})" return format_string.format(pattern) def _combine_regex_patterns(self,...