mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2025-01-07 00:24:18 +00:00
Merge pull request 'fix: Force size value truncation for digital ocean, change query url' (#368) from digital-ocean-volume into master
Reviewed-on: https://git.selfprivacy.org/SelfPrivacy/selfprivacy.org.app/pulls/368 Reviewed-by: Inex Code <inex.code@selfprivacy.org>
This commit is contained in:
commit
0cb2f2082a
|
@ -455,8 +455,8 @@ class DigitalOceanApi extends RestApiMap {
|
|||
}
|
||||
|
||||
Future<GenericResult<bool>> resizeVolume(
|
||||
final String name,
|
||||
final DiskSize size,
|
||||
final String uuid,
|
||||
final int gb,
|
||||
) async {
|
||||
bool success = false;
|
||||
|
||||
|
@ -464,11 +464,10 @@ class DigitalOceanApi extends RestApiMap {
|
|||
final Dio client = await getClient();
|
||||
try {
|
||||
resizeVolumeResponse = await client.post(
|
||||
'/volumes/actions',
|
||||
'/volumes/$uuid/actions',
|
||||
data: {
|
||||
'type': 'resize',
|
||||
'volume_name': name,
|
||||
'size_gigabytes': size.gibibyte,
|
||||
'size_gigabytes': gb,
|
||||
'region': region,
|
||||
},
|
||||
);
|
||||
|
|
|
@ -698,8 +698,8 @@ class DigitalOceanServerProvider extends ServerProvider {
|
|||
final DiskSize size,
|
||||
) async =>
|
||||
_adapter.api().resizeVolume(
|
||||
volume.name,
|
||||
size,
|
||||
volume.uuid!,
|
||||
size.gibibyte.toInt(),
|
||||
);
|
||||
|
||||
@override
|
||||
|
|
|
@ -157,7 +157,9 @@ class _ExtendingVolumePageState extends State<ExtendingVolumePage> {
|
|||
: () {
|
||||
context.read<ApiProviderVolumeCubit>().resizeVolume(
|
||||
widget.diskVolumeToResize,
|
||||
DiskSize.fromGibibyte(_currentSliderGbValue),
|
||||
DiskSize.fromGibibyte(
|
||||
_currentSliderGbValue.truncate().toDouble(),
|
||||
),
|
||||
context.read<ApiServerVolumeCubit>().reload,
|
||||
);
|
||||
context.router.popUntilRoot();
|
||||
|
|
Loading…
Reference in a new issue