-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add docs regarding how to integrate it with django Signup #8
Comments
We've the default endpoints listed in: https://github.com/CuriousLearner/django-phone-verify/blob/master/phone_verify/docs/api_endpoints.md You can check the source here: https://github.com/CuriousLearner/django-phone-verify/blob/master/phone_verify/api.py#L13 You can override the Further docs are in progress and would be included soon with the package. If you've any questions, please feel free to comment below. Thanks! |
Here are the updated docs on usage: https://github.com/CuriousLearner/django-phone-verify/blob/master/docs/usage.rst Does that solve your problem, @uditvashisht ? |
I'm marking this issue resolved via #9 If you feel these docs can be improved, or if you've any more questions, please feel free to open a new issue. Thank you for your contributions! |
The OP didnt answer, but I would like to know how to integrate. An example app demonstrating the usage of this module would be really helpful. Thank you |
Hi, As far as I could understand, this documentation helps with api. What if I have just a django web application. |
Can you please elaborate on what you're looking for? Can you explain your use case? |
I am creating a webapp, for which Mobile Number is Mandatory. |
What you've in User's table will be there. A separate table with mobile_number and the security_code would be created which can help you in verifying the number. If you're using APIs, the docs describe how you can override the provided API methods to accomplish this use case here: https://github.com/CuriousLearner/django-phone-verify/blob/master/docs/usage.rst#usage The same logic applies if you're using the templating system. You can use the same logic in your views. |
Hi, I am not sure how to use it with an existing project. I have a custom user model with a phone number. I want to verify his phone at the time of signup. How to do that?
The text was updated successfully, but these errors were encountered: