Ensure owned call links are revoked on delete.

This commit is contained in:
Alex Hart
2023-06-13 11:06:05 -03:00
committed by Cody Henthorne
parent 03a212eee4
commit 290b0fe46f
12 changed files with 334 additions and 126 deletions

View File

@@ -14,6 +14,14 @@ import org.thoughtcrime.securesms.R
*/
class ProgressCardDialogFragment : DialogFragment(R.layout.progress_card_dialog) {
companion object {
fun create(title: String): ProgressCardDialogFragment {
return ProgressCardDialogFragment().apply {
arguments = ProgressCardDialogFragmentArgs.Builder(title).build().toBundle()
}
}
}
private val args: ProgressCardDialogFragmentArgs by navArgs()
override fun onCreateDialog(savedInstanceState: Bundle?): Dialog {