(allowed)
| 28 | |
| 29 | |
| 30 | def _generate_converter_name(allowed): |
| 31 | converter_name = 'drf_format_suffix' |
| 32 | if allowed: |
| 33 | converter_name += '_' + '_'.join(allowed) |
| 34 | return converter_name |
| 35 | |
| 36 | |
| 37 | def apply_suffix_patterns(urlpatterns, suffix_pattern, suffix_required, suffix_route=None): |
no outgoing calls
no test coverage detected