Ejemplo n.º 1
0
 //JDR: Set path for user to be redirected after loggin, this is also used to send user to a page they atempted to acces but was not loggedIn
 public static void SetLoggedInPathLocation(string Controller, string Action)
 {
     UserAccount.SetLoggedInPathController(Controller);
     UserAccount.SetLoggedInPathAction(Action);
 }
Ejemplo n.º 2
0
 //------------------------PUBLIC Define Model Methods ------------------------
 //JDR: Reset logginPath
 public static void ResetLoggedInPath()
 {
     UserAccount.SetLoggedInPathController();
     UserAccount.SetLoggedInPathAction();
 }