After logging into my application, I am attempting to automatically open the admin page in a new tab instead of reloading the public page. However, my current code isn't working as expected:
var url = $state.href('/admin/overview');
$window.open(url, '_blank');
If you have any suggestions or tips on how to achieve this, please let me know. Thank you!