feat(xo-web/remotes): use WORKGROUP as default SMB domain (#3398)

This commit is contained in:
Julien Fontanet 2018-09-11 10:46:52 +02:00 committed by GitHub
parent 4fec816274
commit d8bd30e355
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -5,6 +5,7 @@
### Enhancements
- [Remotes] Test the remote automatically on changes [#3323](https://github.com/vatesfr/xen-orchestra/issues/3323) (PR [#3397](https://github.com/vatesfr/xen-orchestra/pull/3397))
- [Remotes] Use *WORKGROUP* as default domain for new SMB remote (PR [#3398](https://github.com/vatesfr/xen-orchestra/pull/3398))
### Bug fixes

View File

@ -78,7 +78,7 @@ export default [
}
const {
domain,
domain = 'WORKGROUP',
host,
name,
options,
@ -120,7 +120,7 @@ export default [
({ state, effects, formatMessage }) => {
const {
remote = {},
domain = remote.domain || '',
domain = remote.domain || 'WORKGROUP',
host = remote.host || '',
name = remote.name || '',
options = remote.options || '',