When a user who is not logged in clicks on a link containing a remoteFunction like:
<a href="#" onclick="${remoteFunction(
controller: 'book',
action: 'count',
id: book.id,
onSuccess: 'updateBookCount(data,textStatus);'
)}">
add count to book
</a>
for an action:
@Secured("ROLE_USER")
def count() { ... }
How can I redirect the user to the login page, if he is not logged in?