1
0
mirror of https://github.com/etesync/android synced 2025-01-11 00:01:12 +00:00

Invitations: show who the invitation is from.

This commit is contained in:
Tom Hacohen 2020-09-30 09:37:31 +03:00
parent 1a6376e61a
commit 468b97f6f0

View File

@ -104,7 +104,7 @@ class InvitationsListFragment : ListFragment(), AdapterView.OnItemClickListener
val tv = v!!.findViewById<View>(R.id.title) as TextView val tv = v!!.findViewById<View>(R.id.title) as TextView
// FIXME: Should have a sensible string here // FIXME: Should have a sensible string here
tv.text = "Invitation ${position}" tv.text = "Invitation from ${invitation.fromUsername}"
// FIXME: Also mark admins // FIXME: Also mark admins
val readOnly = v.findViewById<View>(R.id.read_only) val readOnly = v.findViewById<View>(R.id.read_only)