-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update for new tutelary functionality
Also small change to get tests working, due to upgrade in djoser, which now tests SEND_ACTIVATION_EMAIL setting before making new users active.
- Loading branch information
Ian Ross
committed
Mar 14, 2016
1 parent
48da959
commit 756ddf3
Showing
11 changed files
with
168 additions
and
182 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
--- | ||
language: python | ||
python: | ||
- "3.4" | ||
- "3.5" | ||
services: | ||
- postgresql | ||
addons: | ||
|
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,5 +1,5 @@ | ||
const SETTINGS = { | ||
API_BASE: 'http://localhost:5000/v1' | ||
API_BASE: 'http://0.0.0.0:5000/v1' | ||
}; | ||
|
||
export default SETTINGS; |
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 |
---|---|---|
|
@@ -22,6 +22,7 @@ | |
|
||
DJOSER.update({ | ||
'DOMAIN': 'localhost:8080', | ||
'SEND_ACTIVATION_EMAIL': False, | ||
}) | ||
|
||
# devserver settings | ||
|
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 |
---|---|---|
|
@@ -14,3 +14,7 @@ | |
'HOST': '', | ||
} | ||
} | ||
|
||
DJOSER.update({ | ||
'SEND_ACTIVATION_EMAIL': False, | ||
}) |
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
Oops, something went wrong.