MCPcopy Index your code
hub / github.com/Dispatcharr/Dispatcharr / settings

Method settings

core/api_views.py:281–286  ·  view source on GitHub ↗

Get or update the proxy settings.

(self, request)

Source from the content-addressed store, hash-verified

279
280 @action(detail=False, methods=['get', 'patch'])
281 def settings(self, request):
282 """Get or update the proxy settings."""
283 if request.method == 'GET':
284 return self.list(request)
285 elif request.method == 'PATCH':
286 return self.partial_update(request)
287
288
289

Calls 2

listMethod · 0.95
partial_updateMethod · 0.95