Get all the pages user can administer

Fetch user's pages

LightBulb.users.getAccounts({user:"me"}, function(response) {
    console.log(response);
    $("#result").html("<h2>Result  - 1st Page</h2>")
        var page = response.data[0];
        for(i in page){
            $("#result").append("<b>"+i+":</b> "+page[i]+"<br/>");
        }
});