1
0
miroir de https://github.com/nextcloud/server.git synchronisé 2024-08-30 05:55:15 +02:00
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Cette révision appartient à :
Roeland Jago Douma 2018-03-08 20:56:26 +01:00
Parent 953691abb2
révision ea5393e9f8
Signature inconnue de Gitea
ID de la clé GPG: F941078878347C0C
2 fichiers modifiés avec 6 ajouts et 3 suppressions

Voir le fichier

@ -376,7 +376,8 @@ describe('OCA.External.Settings tests', function() {
previews: true,
enable_sharing: false,
filesystem_check_changes: 0,
encoding_compatibility: false
encoding_compatibility: false,
readonly: false
});
});
});

Voir le fichier

@ -727,7 +727,8 @@ describe('OCA.Sharing.FileList tests', function() {
etag: 'abc',
shareOwner: 'User One',
recipients: 'User Two',
mountType: 'external-root'
mountType: 'external-root',
sharePermissions: OC.PERMISSION_READ,
}]);
$tr = fileList.$el.find('tr:first');
@ -749,7 +750,8 @@ describe('OCA.Sharing.FileList tests', function() {
etag: 'abc',
shareOwner: 'User One',
recipients: 'User Two',
mountType: 'external-root'
mountType: 'external-root',
sharePermissions: OC.PERMISSION_READ | OC.PERMISSION_SHARE,
}]);
$tr = fileList.$el.find('tr:first');