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
// If you have multiple rules in your workflow that need to update token data. | |
function (user, context, callback) { | |
user.app_metadata = user.app_metadata || {}; | |
const token_namespace = 'https://your-domain.com/app_metadata'; | |
// assumes your metadata object is shallow | |
const addCustomerId = stripe_customer_id => ({ | |
...context.idToken[token_namespace], |
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
/* | |
* Migrate Fontawesome 4 to Fontawesome 5 | |
* @website https://www.litecart.net/ | |
*/ | |
(function($){ | |
var icons = { | |
"fa-500px": "fab fa-500px", | |
"fa-address-book-o": "far fa-address-book", | |
"fa-address-card-o": "far fa-address-card", |