google config redirect url code example
Example 1: login redirect url
LOGIN_REDIRECT_URL = 'your_url'
Example 2: odoo redirect url
class Event(models.Model): _inherit = "event.event" @api.multi def pagseguro(self): return { "url": "/vrtx_events/vrtx_events/", "type": "ir.actions.act_url" }