You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: api/src/main/java/org/apache/cloudstack/api/command/user/gui/theme/CreateGuiThemeCmd.java
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -57,6 +57,10 @@ public class CreateGuiThemeCmd extends BaseCmd {
57
57
"wildcard) separated by comma that can retrieve the theme; e.g.: *acme.com,acme2.com")
58
58
privateStringcommonNames;
59
59
60
+
@Parameter(name = ApiConstants.LOGIN_BASE_DOMAIN, type = CommandType.STRING, length = 65535, description = "The ACS domain to be used as base " +
61
+
"for the login when accessing the GUI through the common name defined in the theme. If a common name is not defined, this parameter is ignored on the GUI.")
62
+
privateStringloginBaseDomain;
63
+
60
64
@Parameter(name = ApiConstants.DOMAIN_IDS, type = CommandType.STRING, length = 65535, description = "A set of domain UUIDs (also known as ID for " +
61
65
"the end-user) separated by comma that can retrieve the theme.")
62
66
privateStringdomainIds;
@@ -93,6 +97,10 @@ public String getCommonNames() {
Copy file name to clipboardExpand all lines: api/src/main/java/org/apache/cloudstack/api/command/user/gui/theme/UpdateGuiThemeCmd.java
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -60,6 +60,10 @@ public class UpdateGuiThemeCmd extends BaseCmd {
60
60
"wildcard) separated by comma that can retrieve the theme; e.g.: *acme.com,acme2.com")
61
61
privateStringcommonNames;
62
62
63
+
@Parameter(name = ApiConstants.LOGIN_BASE_DOMAIN, type = CommandType.STRING, length = 65535, description = "The ACS domain to be used as base for " +
64
+
"the login when accessing the GUI through the common name defined in the theme. If a common name is not defined, this parameter is ignored on the GUI.")
65
+
privateStringloginBaseDomain;
66
+
63
67
@Parameter(name = ApiConstants.DOMAIN_IDS, type = CommandType.STRING, length = 65535, description = "A set of domain UUIDs (also known as ID for " +
64
68
"the end-user) separated by comma that can retrieve the theme.")
65
69
privateStringdomainIds;
@@ -96,6 +100,10 @@ public String getJsonConfiguration() {
0 commit comments