1
0
Fork 0

No issue: Hook up share button on session item to action

master
Emily Kager 2019-04-01 10:29:01 -07:00 committed by Colin Lee
parent fd7dcf36cf
commit b73a0600f6
1 changed files with 4 additions and 0 deletions

View File

@ -103,6 +103,10 @@ class SessionsAdapter(
session_card_overflow_button.setOnClickListener {
session?.apply { actionEmitter.onNext(SessionsAction.MenuTapped(this)) }
}
session_card_share_button.setOnClickListener {
session?.apply { actionEmitter.onNext(SessionsAction.ShareTapped(this)) }
}
}
fun bind(session: ArchivedSession) {