Create PinnedEventsTimelineProvider, expose it in TimelineBindings

This commit is contained in:
Jorge Martín 2025-11-03 14:43:18 +01:00
parent 7953ea8c41
commit 4df7841452
4 changed files with 36 additions and 4 deletions

View file

@ -0,0 +1,16 @@
/*
* Copyright 2025 New Vector Ltd.
*
* SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE files in the repository root for full details.
*/
package io.element.android.appnav.di
import io.element.android.features.messages.api.pinned.PinnedEventsTimelineProvider
import io.element.android.libraries.matrix.api.timeline.TimelineProvider
interface TimelineBindings {
val timelineProvider: TimelineProvider
val pinnedEventsTimelineProvider: PinnedEventsTimelineProvider
}