Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-10-19replace execute by executeQuery of QueryBuilderVitor Mattos
Signed-off-by: Vitor Mattos <vitor@php.rio>
2021-10-18Replace old type constants with new onesJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2021-10-07Allow to remove all permissions without falling back to the next levelJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2021-09-20Add sending room shares supportGary Kim
Signed-off-by: Gary Kim <gary@garykim.dev>
2021-07-15Review fixesGary Kim
Signed-off-by: Gary Kim <gary@garykim.dev>
2021-07-15Implement CloudFederationProvider for TalkGary Kim
Signed-off-by: Gary Kim <gary@garykim.dev>
2021-05-18Fix name and type of left one-to-one conversations so reused user ids can't ↵Joas Schilling
join again Signed-off-by: Joas Schilling <coding@schilljs.com>
2021-04-14Merge pull request #5459 from ↵Joas Schilling
nextcloud/feature/noid/log-conversation-deletions-in-audit-log Log conversation deletions in the audit.log
2021-04-12Log conversation deletions in the audit.logJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2021-03-26Add and remove users from conversations when their group membership changesJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2021-03-08Handle all getParticipants with multi sessionsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2021-03-08Only load sessions on the room list for this PHP sessionJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2021-03-08Fix selecting the session when there could be multipleJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2021-03-08Don't load session on getRoomsForUser when not neededJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2021-03-08Prepare selecting the correct session in case there are multipleJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2021-02-12Populate the display name when adding logged in usersJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2021-02-11Provide information for incoming call screensJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2021-01-14Allow SIP dial-in in non-public conversations tooJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2021-01-07Do not load full room object for share queriesRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2020-12-18Adjust files to make cs fixer happyVincent Petry
Seems PHP CS fixer has some new rules or operations. This fixes the code to match the new rules by running composer run cs:fix. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2020-12-15Use the select helper everywhereJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-12-15Do not select multiple "id" columns so oracle doesn't break with LIMITJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-12-15Can not SELECT * when selecting more fields afterwards on OracleJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-12-11Remove redundant issetVincent Petry
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2020-12-11Improve room display name protectionVincent Petry
In case the API would return a room for some reason, it would return the name as "Private Conversation". The logic has been updated to also work properly with listable vs non-listable rooms in regards to guests. Refactored the listable check logic into a single method to make it reusable. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2020-12-11Check that guests app is enabled when checkingVincent Petry
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2020-12-11Apply suggestions from code review of listable rooms featureVincent Petry
Always join as USER when joining group or public room Allow nulls for Oracle Changes after review Removed populateBaseRoomData and reused the existing code by adding an extra condition for when querying listable rooms with null participant. Co-authored-by: Joas Schilling <coding@schilljs.com> Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2020-12-11Fix filtering of listable roomsVincent Petry
This now makes the public rooms also visible in the search results. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2020-12-11Make it possible to join listed group conversationsVincent Petry
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2020-12-11Adjustments for listable rooms after reviewVincent Petry
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2020-12-11Adjust approach for search results for listable roomsVincent Petry
Added "/listable-room" endpoint for listing listable rooms with a similar result format like the "/room" endpoint. Switched left sidebar to use Conversation components for displaying results. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2020-12-11Added search provider for listed conversationsVincent Petry
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2020-12-11Add listable flags attribute for conversationsVincent Petry
Added ability to set a conversation as listable for regular users and/or guest users from the guest app. This only implements the flag, endpoint and UI to manage it but not yet making it appear in search results. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2020-12-08Add description field to conversationsDaniel Calviño Sánchez
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2020-11-26Also load the session information when we load an attendeeJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-11-26Add missing alias when deleting a room in the background jobJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-11-26Get the participant by actorJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-11-26Add method to get room by actorId / actorType.Joachim Bauch
Signed-off-by: Joachim Bauch <bauch@struktur.de>
2020-11-26Introduce constants for the actor typesJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-10-30Simplify query methods and inject the config on the methodJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-10-30Move more functions to the servicesJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-10-30Only return rooms with an attendee matchJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-10-30Fix PHP CSJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-10-30Move Room::getParticipantUserIds() to participant serviceJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-10-30Further adjustments in the RoomControllerJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-10-30Fix joining as a guest and leaving a conversation as a sessionJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-10-30Fix loading a Room by sessionJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-10-30Fix function usageJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-10-30Remove updating-methods from Participant objectJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-10-30Move participants table in Manager to attendeesJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>