in my index controller I have return dict(message=T('Welcome to
Bewoost'),form=auth());
And because I added form=auth() to the dict my index url changes from
domain.com/appname to domain.com/appname/default/user/login
How and why does it do that.
How can I make it not do that.
I tried doing
auth.settings.login_url = URL('user', args='login') but i just get an
error plus i dont even know where to put it.
thanks

