commento/frontend/js/self.js

21 lines
457 B
JavaScript
Raw Normal View History

2018-06-04 00:06:17 +08:00
(function (global, document) {
// Get self details.
global.selfGet = function(callback) {
var json = {
"ownerToken": global.cookieGet("commentoOwnerToken"),
2018-06-04 00:06:17 +08:00
};
global.post(global.commentoOrigin + "/api/owner/self", json, function(resp) {
2018-06-04 00:06:17 +08:00
if (!resp.success || !resp.loggedIn) {
document.location = "/login";
return;
}
global.owner = resp.owner;
callback();
});
};
}(window, document));