Determine if the request includes a '.json' style format suffix
(self, **kwargs)
| 253 | # API policy instantiation methods |
| 254 | |
| 255 | def get_format_suffix(self, **kwargs): |
| 256 | """ |
| 257 | Determine if the request includes a '.json' style format suffix |
| 258 | """ |
| 259 | if self.settings.FORMAT_SUFFIX_KWARG: |
| 260 | return kwargs.get(self.settings.FORMAT_SUFFIX_KWARG) |
| 261 | |
| 262 | def get_renderers(self): |
| 263 | """ |