File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,11 @@ public class FillCLI
20
20
+ $ "\n JSON config: $.{ nameof ( core . AppConfig . User ) } .{ nameof ( core . UserConfig . Name ) } for <user name>") ]
21
21
public string ? UserCredentials { get ; set ; }
22
22
23
+ [ Option ( "server-class" , HelpText = "Jira server class (whether vanilla or with timesheet plugins)"
24
+ + $ "\n JSON config: $.{ nameof ( core . AppConfig . JiraServer ) } .{ nameof ( jira . ServerConfig . ServerClass ) } "
25
+ + $ "\n Available values: { nameof ( jira . JiraServerClass . VanillaJira ) } , { nameof ( jira . JiraServerClass . TempoTimeSheetsPlugin ) } , { nameof ( jira . JiraServerClass . ICTimePlugin ) } ") ]
26
+ public string ? ServerClass { get ; set ; }
27
+
23
28
[ Option ( "no-proxy" , HelpText = "Turn off proxying the HTTP(S) connections to Jira server"
24
29
+ $ "\n JSON config: $.{ nameof ( core . AppConfig . JiraServer ) } .{ nameof ( jira . ServerConfig . UseProxy ) } (negated!)") ]
25
30
public bool ? NoProxy { get ; set ; }
@@ -50,6 +55,7 @@ public core.AppConfig ToAppConfig()
50
55
UseVerboseFeedback = UseVerboseFeedback ,
51
56
JiraServer = new jira . ServerConfig ( )
52
57
{
58
+ ServerClass = ServerClass ,
53
59
BaseUrl = jiraServerSpecification ,
54
60
UseProxy = ! NoProxy ,
55
61
MaxConnectionsPerServer = MaxConnectionsPerServer ,
You can’t perform that action at this time.
0 commit comments