<div dir="ltr"><div class="gmail_extra">You can perform a check whether the user is logged in in appinfo/app.php and if the user is not logged in add the script. - Please be aware that this script will be added to any page that the guest accesses. (e.g. the file share view)</div>

<div class="gmail_extra"><br></div><div class="gmail_extra">App Framework:</div><div class="gmail_extra"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">


if (!$api->isLoggedIn()) {<br>    <span style="white-space:pre-wrap">       </span>$api->addScript('public/login');<br>}</blockquote><div><br></div><div>ownCloud API:</div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">

if(!\OC_User::isLoggedIn()) {<br>      \OCP\Util::addscript('appname', 'public/login');<br>}</blockquote></div></div>