Last active
March 26, 2018 16:41
-
-
Save cosmic-byte/82019065fe0f409ad4872c2fc0afea27 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class AuthDto: | |
| api = Namespace('auth', description='authentication related operations') | |
| user_auth = api.model('auth_details', { | |
| 'email': fields.String(required=True, description='The email address'), | |
| 'password': fields.String(required=True, description='The user password '), | |
| }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment