Save set image to database

This commit is contained in:
Dane Everitt 2016-10-06 22:32:54 -04:00
parent a2fc511e7e
commit c347a6756c
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
2 changed files with 2 additions and 0 deletions

View file

@ -16,6 +16,7 @@ This project follows [Semantic Versioning](http://semver.org) guidelines.
* File manager would do multiple up-down-up-down loading actions if you escaped renaming a file. Fixed the binding issue. [#122](https://github.com/Pterodactyl/Panel/issues/122) * File manager would do multiple up-down-up-down loading actions if you escaped renaming a file. Fixed the binding issue. [#122](https://github.com/Pterodactyl/Panel/issues/122)
* File manager actions would not trigger properly if text in a row was used to right-click from. * File manager actions would not trigger properly if text in a row was used to right-click from.
* File manager rename field would not disappear when pressing the escape key in chrome. [#121](https://github.com/Pterodactyl/Panel/issues/121) * File manager rename field would not disappear when pressing the escape key in chrome. [#121](https://github.com/Pterodactyl/Panel/issues/121)
* Fixes bug where server image assigned was not being saved to the database.
## v0.5.0-pre.1 (Bodacious Boreopterus) ## v0.5.0-pre.1 (Bodacious Boreopterus)

View file

@ -242,6 +242,7 @@ class ServerRepository
'option' => $data['option'], 'option' => $data['option'],
'startup' => $data['startup'], 'startup' => $data['startup'],
'daemonSecret' => $uuid->generate('servers', 'daemonSecret'), 'daemonSecret' => $uuid->generate('servers', 'daemonSecret'),
'image' => (isset($data['custom_image_name'])) ? $data['custom_image_name'] : $option->docker_image,
'username' => $this->generateSFTPUsername($data['name']), 'username' => $this->generateSFTPUsername($data['name']),
'sftp_password' => Crypt::encrypt('not set') 'sftp_password' => Crypt::encrypt('not set')
]); ]);