Hello, i try to implement partial pipeline for disconnect. Documentation says:
When it’s time to resume the process just redirect the user to /complete// or /disconnect// view. The pipeline will resume in the same function that cut the process.
http://psa.matiasaguirre.net/docs/pipeline.html#partial-pipeline
But when view return redirect
return redirect('social:disconnect', backend=backend)
i get an error: GET /disconnect// HTTP/1.0" 405
I think this error because social:disconnect view allows only post requests: https://github.com/omab/python-social-auth/blob/master/social/apps/django_app/views.py#L34
How can i implement partial pipline in this case?
Hello, i try to implement partial pipeline for disconnect. Documentation says:
http://psa.matiasaguirre.net/docs/pipeline.html#partial-pipeline
But when view return redirect
i get an error: GET /disconnect// HTTP/1.0" 405
I think this error because social:disconnect view allows only post requests: https://github.com/omab/python-social-auth/blob/master/social/apps/django_app/views.py#L34
How can i implement partial pipline in this case?