Skip to Content
Menu
This question has been flagged
1 Reply
6556 Views

Hi friends,

I need to change code for web_login function in web/controllers/main.py

class name Home.I dont know how to inherit for that.Can anyone share how to do it

Thanks in advance

Avatar
Discard
Best Answer

from odoo.addons.web.controllers.main import Home


class Home(Home):

   def web_login(self, all prms):

       res = super(Home, self).web_login(all parms)

      #update the code 

      return res

Avatar
Discard

Hi,

I need to change "web_auth_signup" action to send an e-mail after registering a new member.

Does this work ?

Related Posts Replies Views Activity
3
Jun 24
2031
0
Apr 24
891
1
Mar 23
2371
2
Dec 22
13207
1
Nov 21
3411