Skip to content
Snippets Groups Projects
Commit 7afe5431 authored by Taras's avatar Taras
Browse files

Create post menu listener

parent f9a47514
No related branches found
No related tags found
No related merge requests found
package org.futo.circles.feature.timeline.post.menu
import org.futo.circles.core.model.PostContent
interface PostMenuListener {
fun onShare(content: PostContent)
fun onIgnore(senderId: String)
fun onSaveToDevice(content: PostContent)
fun onEditPostClicked(roomId: String, eventId: String)
fun onSaveToGallery(roomId: String, eventId: String)
fun onReport(roomId: String, eventId: String)
fun onRemove(roomId: String, eventId: String)
fun endPoll(roomId: String, eventId: String)
fun onEditPollClicked(roomId: String, eventId: String)
fun onInfoClicked(roomId: String, eventId: String)
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment