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
from django.core import signing | |
# prepare data | |
data = {"email":"[email protected]"} | |
salt = "abcd_1234_XYZ" | |
# sign (encrypt) - key by default: settings.SECRET_KEY | |
# salt - namespace | |
token = signing.dumps(data, salt=salt) |
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
Ticket Breakdown | |
Epic: "Currently, the id of each Agent on the reports we generate is their internal database id. We'd like to add the ability for Facilities to save their own custom ids for each Agent they work with and use that id when generating reports for them." | |
Complexity: 1, 2, 3, 5, 8, 12... | |
Tasks: | |
1) Add table "FacilityAgents" with columns: | |
* agent - FK to "Agents" | |
* facility - FK to "Facilities" |
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
firebase.auth().onAuthStateChanged(function(user) { | |
if (user) { | |
console.log("User authenticated"); | |
} else { | |
console.log("User lost"); | |
} | |
}); |
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
ShipperOrder | |
ready -> BBTycoon | |
BBTycoon | |
Work on SOs | |
delivery task created -> DeliveryTask | |
DeliveryTask | |
approve -> BBMinerva | |
cancel -> ShipperOrder | |
manual carrier user assignation -> PendingJob | |
BBMinerva |
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
GSLogged Out | |
Login form | |
Facebook login -> Others Events | |
GSLogged In | |
tap all others events -> Others Events | |
tap my events -> My Events | |
tap messages -> Messages | |
tap settings -> Settings | |
Others Events* |
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
Logged out | |
Login form | |
submit correct data -> Dweet list | |
Error login | |
Logged In | |
logout -> Login form | |
Dweet list | |
click create dweet button -> Create dweet | |
Dweet list item |