Return the view name, as used in OPTIONS responses and in the browsable API.
(self)
| 235 | } |
| 236 | |
| 237 | def get_view_name(self): |
| 238 | """ |
| 239 | Return the view name, as used in OPTIONS responses and in the |
| 240 | browsable API. |
| 241 | """ |
| 242 | func = self.settings.VIEW_NAME_FUNCTION |
| 243 | return func(self) |
| 244 | |
| 245 | def get_view_description(self, html=False): |
| 246 | """ |
no outgoing calls
no test coverage detected