Skip to content

Commit

Permalink
Rename SMB external storages
Browse files Browse the repository at this point in the history
  • Loading branch information
DeepDiver1975 committed Dec 7, 2020
1 parent 0524645 commit 8fc1dea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/files_external/lib/Lib/Backend/SMB.php
Expand Up @@ -38,7 +38,7 @@ public function __construct(IL10N $l) {
->setIdentifier('smb')
->addIdentifierAlias('\OC\Files\Storage\SMB') // legacy compat
->setStorageClass('\OCA\Files_External\Lib\Storage\SMB')
->setText($l->t('SMB / CIFS'))
->setText($l->t('SMB Personal (unique file IDs)'))
->addParameters([
(new DefinitionParameter('host', $l->t('Host'))),
(new DefinitionParameter('share', $l->t('Share'))),
Expand Down
4 changes: 2 additions & 2 deletions apps/files_external/lib/Lib/Backend/SMB2.php
Expand Up @@ -35,9 +35,9 @@ class SMB2 extends ExternalBackend {

public function __construct(IL10N $l) {
$this
->setIdentifier('smb2')
->setIdentifier('smb-coll')
->setStorageClass('\OCA\Files_External\Lib\Storage\SMB2')
->setText($l->t('SMB / CIFS (version 2)'))
->setText($l->t('SMB Collaborative (shared file IDs)'))
->addParameters([
(new DefinitionParameter('host', $l->t('Host'))),
(new DefinitionParameter('share', $l->t('Share'))),
Expand Down

0 comments on commit 8fc1dea

Please sign in to comment.