Skip to content

Commit

Permalink
feat(dedicated): make choice effective at os install
Browse files Browse the repository at this point in the history
ref: MANAGER-11680
Signed-off-by: Jean-Baptiste Delon <[email protected]>
  • Loading branch information
JayBeeDe committed Aug 10, 2023
1 parent 93004d1 commit 910bbf1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1101,14 +1101,15 @@ export default class Server {
});
}

startInstallation(serviceName, templateName, details) {
startInstallation(serviceName, templateName, partitionSchemeName, details) {
return this.OvhHttp.post('/dedicated/server/{serviceName}/install/start', {
rootPath: 'apiv6',
urlParams: {
serviceName,
},
data: {
details,
partitionSchemeName,
templateName,
},
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,7 @@ angular
Server.startInstallation(
$stateParams.productId,
$scope.installation.selectGabarit.id,
$scope.installation.selectPartitionScheme,
{
language: camelCase($scope.installation.selectLanguage),
customHostname: $scope.installation.options.customHostname,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2486,6 +2486,7 @@ angular
Server.startInstallation(
$stateParams.productId,
$scope.informations.gabaritName,
$scope.installation.selectPartitionScheme,
{
language: camelCase($scope.installation.selectLanguage),
installRTM: $scope.installation.options.installRTM || false,
Expand Down

0 comments on commit 910bbf1

Please sign in to comment.