-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:flavors/django-graphql-social-auth
- Loading branch information
Showing
5 changed files
with
38 additions
and
7 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
|
||
class GraphQLSocialAuthError(Exception): | ||
"""Raise GraphQL Social exception""" | ||
"""Raise GraphQL Social Exception""" | ||
|
||
|
||
class InvalidTokenError(GraphQLSocialAuthError): | ||
"""Raise Invalid Token Exception""" | ||
|
||
|
||
class DoAuthError(GraphQLSocialAuthError): | ||
|
||
def __init__(self, message, result): | ||
super().__init__(message) | ||
self.result = result |
Binary file not shown.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ msgid "" | |
msgstr "" | ||
"Project-Id-Version: Django GraphQL Social Auth\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2018-01-17 23:52+0530\n" | ||
"POT-Creation-Date: 2018-09-16 23:17+0700\n" | ||
"PO-Revision-Date: 2018-01-15 02:30+0530\n" | ||
"Last-Translator: mongkok <[email protected]>\n" | ||
"Language-Team: Spanish\n" | ||
|
@@ -26,3 +26,7 @@ msgstr "Proveedor no encontrado" | |
#: decorators.py:25 | ||
msgid "Invalid token" | ||
msgstr "Token inválido" | ||
|
||
#: decorators.py:30 | ||
msgid "`{}` is not a user instance" | ||
msgstr "`{}` no es una instancia de usuario" |
This file contains 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