03-31-2020, 02:45 PM
In my case, I needed to set the ``start_link`` column value for the login_group to the link I want the user to see when they log in.
For example, I set it to "my_tasks".
The user now sees my_tasks tab when they log in. Please note that this is in TACTIC 4.7. I can't speak for 4.5.
In 4.7, this is defined in ``src/tactic/ui/app/page_nav_container_wdg.py`` around line 86.
For example, I set it to "my_tasks".
Code:
sthpw=# select login_group, start_link from login_group;
login_group | start_link
-------------+------------
users | my_tasks
The user now sees my_tasks tab when they log in. Please note that this is in TACTIC 4.7. I can't speak for 4.5.
In 4.7, this is defined in ``src/tactic/ui/app/page_nav_container_wdg.py`` around line 86.
Code:
start_link = security.get_start_link()
if start_link:
self.kwargs['link'] = start_link
return self.init()