mirror of
https://github.com/nextcloud/server.git
synced 2026-02-18 18:28:50 -05:00
fix(files): disable Unshare until proper fix
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
This commit is contained in:
parent
cfef434019
commit
d06ed4d7cb
2 changed files with 9 additions and 7 deletions
|
|
@ -71,10 +71,11 @@ describe('Delete action conditions tests', () => {
|
|||
expect(action.displayName([file], trashbinView)).toBe('Delete permanently')
|
||||
})
|
||||
|
||||
test('Shared node values', () => {
|
||||
jest.spyOn(auth, 'getCurrentUser').mockReturnValue(null)
|
||||
expect(action.displayName([file2], view)).toBe('Unshare')
|
||||
})
|
||||
// TODO: Fix this test
|
||||
// test('Shared node values', () => {
|
||||
// jest.spyOn(auth, 'getCurrentUser').mockReturnValue(null)
|
||||
// expect(action.displayName([file2], view)).toBe('Unshare')
|
||||
// })
|
||||
|
||||
test('Shared and owned nodes values', () => {
|
||||
expect(action.displayName([file, file2], view)).toBe('Delete and unshare')
|
||||
|
|
|
|||
|
|
@ -46,9 +46,10 @@ export const action = new FileAction({
|
|||
return t('files', 'Delete and unshare')
|
||||
}
|
||||
|
||||
if (isAllUnshare(nodes)) {
|
||||
return t('files', 'Unshare')
|
||||
}
|
||||
// Temporary disabled until fixed on 28.0.3
|
||||
// if (isAllUnshare(nodes)) {
|
||||
// return t('files', 'Unshare')
|
||||
// }
|
||||
|
||||
return view.id === 'trashbin'
|
||||
? t('files', 'Delete permanently')
|
||||
|
|
|
|||
Loading…
Reference in a new issue