Correctly store changes to upload size limit, closes #1237
This commit is contained in:
parent
e404918bff
commit
7ed9c7cb93
|
@ -6,6 +6,7 @@ This project follows [Semantic Versioning](http://semver.org) guidelines.
|
||||||
## v0.7.10 (Derelict Dermodactylus)
|
## v0.7.10 (Derelict Dermodactylus)
|
||||||
### Fixed
|
### Fixed
|
||||||
* Scheduled tasks triggered manually no longer improperly change the `next_run_at` time and do not run twice in a row anymore.
|
* Scheduled tasks triggered manually no longer improperly change the `next_run_at` time and do not run twice in a row anymore.
|
||||||
|
* Changing the maximum web-based file upload size for a node now properly validates and updates.
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
* Egg and server variable values are no longer limited to 191 characters. Turns out some games require a large number of characters in these fields.
|
* Egg and server variable values are no longer limited to 191 characters. Turns out some games require a large number of characters in these fields.
|
||||||
|
|
|
@ -113,6 +113,7 @@ class Node extends Model implements CleansAttributes, ValidableContract
|
||||||
'daemonSFTP' => 'numeric|between:1024,65535',
|
'daemonSFTP' => 'numeric|between:1024,65535',
|
||||||
'daemonListen' => 'numeric|between:1024,65535',
|
'daemonListen' => 'numeric|between:1024,65535',
|
||||||
'maintenance_mode' => 'boolean',
|
'maintenance_mode' => 'boolean',
|
||||||
|
'upload_size' => 'int|between:1,1024',
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue