Add auth required to transactions via direct path

This commit is contained in:
Moe Poi ~ 2022-05-16 11:40:28 +07:00
parent 1c03d01f94
commit 571848ce49

View file

@ -47,6 +47,7 @@ class _NekoyaState extends State<Nekoya> {
'/products' : (context) => const Menu(initialScreen: 1,),
'/cart' : (context) => const Menu(initialScreen: 3,),
'/sessions': (context) => const NavigationAuth(route: Menu(initialScreen: 0,)),
'/transactions': (context) => const NavigationAuth(route: Menu(initialScreen: 4,)),
},
);
}