Example #1
0
 public HomeController(IList<ICommandWrapper> commandWrappers)
 {
     this.commandWrappers = commandWrappers;
     oAuthService = new OAuthService();
     offline = Convert.ToBoolean(ConfigurationManager.AppSettings["app:offline"] ?? "false");
     chatUrl = ConfigurationManager.AppSettings["app:chatUrl"] ?? "/chat";
 }
Example #2
0
 public HomeController(IList <ICommandWrapper> commandWrappers)
 {
     this.commandWrappers = commandWrappers;
     oAuthService         = new OAuthService();
     offline = Convert.ToBoolean(ConfigurationManager.AppSettings["app:offline"] ?? "false");
     chatUrl = ConfigurationManager.AppSettings["app:chatUrl"] ?? "/chat";
 }
Example #3
0
 public HomeController()
 {
     commandWrappers = new List <ICommandWrapper>()
     {
         new LoginLoggingCommandWrapper()
     };
     oAuthService = new OAuthService();
 }
Example #4
0
 public HomeController(IList <ICommandWrapper> commandWrappers)
 {
     this.commandWrappers = commandWrappers;
     oAuthService         = new OAuthService();
 }
Example #5
0
 public AuthActionFilter()
 {
     oAuthService = new OAuthService();
     Required     = true;
 }
Example #6
0
 public HomeController()
 {
     commandWrappers = new List<ICommandWrapper>() {new LoginLoggingCommandWrapper()};
     oAuthService = new OAuthService();
 }
Example #7
0
 public HomeController(IList<ICommandWrapper> commandWrappers)
 {
     this.commandWrappers = commandWrappers;
     oAuthService = new OAuthService();
 }
Example #8
0
 public AuthActionFilter()
 {
     oAuthService = new OAuthService();
     Required = true;
 }