Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
17971cd
Add listable flags attribute for conversations
PVince81 Dec 1, 2020
9646678
Added search provider for listed conversations
PVince81 Dec 1, 2020
f4d2622
WIP add listed conversation to the left sidebar results
PVince81 Dec 1, 2020
353206e
Adjust approach for search results for listable rooms
PVince81 Dec 2, 2020
65238d1
Adjustments for listable rooms after review
PVince81 Dec 2, 2020
fddac32
Tweak left sidebar behavior with listed search results
PVince81 Dec 2, 2020
6f8d1e6
Make it possible to join listed group conversations
PVince81 Dec 2, 2020
4b58da2
Fix filtering of listable rooms
PVince81 Dec 2, 2020
138aeb4
Fix participant service guest user check
PVince81 Dec 2, 2020
3276538
Switch+scroll to joined listed conversation
PVince81 Dec 3, 2020
89f05b4
Add conversation to store early when joining
PVince81 Dec 3, 2020
0aa0dcf
Apply suggestions from code review of listable rooms feature
PVince81 Dec 4, 2020
fea3c64
Post a system message when joining a listable room
PVince81 Dec 4, 2020
74dd434
Don't add conversation to list for guests
PVince81 Dec 4, 2020
506358d
Unit tests for system messages
PVince81 Dec 4, 2020
b7a118a
Check that guests app is enabled when checking
PVince81 Dec 7, 2020
52b88a9
Cleanup listed room code after review
PVince81 Dec 7, 2020
6d75ad2
Added integration tests for joining listable rooms
PVince81 Dec 7, 2020
7748fb9
Extend spreedcheats to allow creating guest account users
PVince81 Dec 8, 2020
0cdd452
Abort php test server on ctrl+c
PVince81 Dec 9, 2020
bcc9f8f
Fix updating listable attribute from occ
PVince81 Dec 9, 2020
10840fd
Fix tests for listable conversations
PVince81 Dec 9, 2020
0e1ed5d
Reword listable in UI by calling it findable
PVince81 Dec 10, 2020
2b54740
Moved ListableSettings into an own component
PVince81 Dec 10, 2020
777c7b6
Changed wording to say visible instead of listable
PVince81 Dec 10, 2020
4d4a484
Added listable settings to new conversation dialog
PVince81 Dec 10, 2020
549e9ec
Small adjustments to listable feature after reviews
PVince81 Dec 11, 2020
fa74ef3
Move listable and locking to new section
PVince81 Dec 11, 2020
5a3a552
Revert "Added search provider for listed conversations"
PVince81 Dec 11, 2020
a4a6c02
Improve room display name protection
PVince81 Dec 11, 2020
f04e3b5
Make listable column smallint
PVince81 Dec 11, 2020
63b020a
Remove redundant isset
PVince81 Dec 11, 2020
71fa517
Adjusted listable docs + increased version
PVince81 Dec 14, 2020
bedea3e
Adjust listable setting field width
PVince81 Dec 14, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Revert "Added search provider for listed conversations"
This reverts commit ba01861 but
preserves code relevant for the listable feature.

Removes the global search provider as it's adding additional noise to
the search results. Users should only use the talk-specific search in
the left sidebar.

Signed-off-by: Vincent Petry <[email protected]>
  • Loading branch information
PVince81 committed Dec 11, 2020
commit 5a3a55210d55a65d2257ee83f001ab8a3e6304d6
2 changes: 0 additions & 2 deletions lib/AppInfo/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@
use OCA\Talk\PublicShareAuth\TemplateLoader as PublicShareAuthTemplateLoader;
use OCA\Talk\Room;
use OCA\Talk\Search\ConversationSearch;
use OCA\Talk\Search\ListedConversationSearch;
use OCA\Talk\Search\CurrentMessageSearch;
use OCA\Talk\Search\MessageSearch;
use OCA\Talk\Search\UnifiedSearchCSSLoader;
Expand Down Expand Up @@ -99,7 +98,6 @@ public function register(IRegistrationContext $context): void {
$context->registerEventListener(\OCP\AppFramework\Http\Events\BeforeTemplateRenderedEvent::class, UnifiedSearchCSSLoader::class);

$context->registerSearchProvider(ConversationSearch::class);
$context->registerSearchProvider(ListedConversationSearch::class);
$context->registerSearchProvider(CurrentMessageSearch::class);
$context->registerSearchProvider(MessageSearch::class);

Expand Down
111 changes: 0 additions & 111 deletions lib/Search/ListedConversationSearch.php

This file was deleted.