public TrelloApiConfiguration(TrelloEmailResolver emailResolver, TrelloAuthentication key, DeploymentLinkingConfiguration deploymentLinkingConfiguration,
                               EmailNotificationConfiguration emailNotificationConfiguration)
 {
     EmailResolver  = emailResolver;
     Authentication = key;
     DeploymentLinkingConfiguration = deploymentLinkingConfiguration;
     EmailNotificationConfiguration = emailNotificationConfiguration;
 }
 public TrelloApiConfiguration(TrelloEmailResolver emailResolver, TrelloAuthentication key, DeploymentLinkingConfiguration deploymentLinkingConfiguration,
     EmailNotificationConfiguration emailNotificationConfiguration)
 {
     EmailResolver = emailResolver;
     Authentication = key;
     DeploymentLinkingConfiguration = deploymentLinkingConfiguration;
     EmailNotificationConfiguration = emailNotificationConfiguration;
 }
Example #3
0
 private static SimpleAuthenticator GetAuthenticator(TrelloAuthentication trelloAuthentication)
 {
     return(new SimpleAuthenticator("key", trelloAuthentication.Key, "token", trelloAuthentication.Token));
 }
Example #4
0
 private static SimpleAuthenticator GetAuthenticator(TrelloAuthentication trelloAuthentication)
 {
     return new SimpleAuthenticator("key", trelloAuthentication.Key, "token", trelloAuthentication.Token);
 }