tenancy-docs/source/_assets/js/extsb.js
Samuel Štancl 0e4cb88bb5 wip
2021-12-14 14:32:52 +01:00

16 lines
498 B
JavaScript

import splitbee from '@splitbee/web';
splitbee.init({
scriptUrl: "https://tenancyforlaravel.com/bee.js",
apiUrl: "https://tenancyforlaravel.com/_hive",
})
window.auth = function (username) {
if (! username) return window.location.replace('https://github.com/tenancy-for-laravel/saas-boilerplate');
splitbee.user.set({
userId: username.substr(1),
}).finally(() => {
window.location.replace('https://github.com/tenancy-for-laravel/saas-boilerplate');
});
}