Add conversations to selector

This commit is contained in:
Abhishek Pandey 2023-12-08 17:12:33 -08:00
parent 3bfadd5416
commit a58559d6c2
2 changed files with 5 additions and 6 deletions

View File

@ -464,9 +464,9 @@ func runGroupsDetailsCmdTest(suite *PreparedBackupGroupsE2ESuite, category path.
t := suite.T()
if category == path.ConversationPostsCategory {
t.Skip("skipping conversation details test, see issue #4780")
}
// if category == path.ConversationPostsCategory {
// t.Skip("skipping conversation details test, see issue #4780")
// }
ctx, flush := tester.NewContext(t)
ctx = config.SetViper(ctx, suite.dpnd.vpr)

View File

@ -217,9 +217,8 @@ func (s *groups) AllData() []GroupsScope {
scopes = append(
scopes,
makeScope[GroupsScope](GroupsLibraryFolder, Any()),
makeScope[GroupsScope](GroupsChannel, Any()))
// TODO: enable conversations in all-data backups
// makeScope[GroupsScope](GroupsConversation, Any()))
makeScope[GroupsScope](GroupsChannel, Any()),
makeScope[GroupsScope](GroupsConversation, Any()))
return scopes
}