2018-04-08 16:56:20 -07:00
|
|
|
import AccountProfileOptionsDialog from '../components/AccountProfileOptionsDialog.html'
|
2019-02-18 16:27:59 -08:00
|
|
|
import { showDialog } from './showDialog'
|
2018-04-04 21:45:19 -07:00
|
|
|
|
2018-04-21 09:56:53 -07:00
|
|
|
export default function showAccountProfileOptionsDialog (account, relationship, verifyCredentials) {
|
2019-02-18 16:27:59 -08:00
|
|
|
return showDialog(AccountProfileOptionsDialog, {
|
|
|
|
label: 'Profile options dialog',
|
|
|
|
title: '',
|
|
|
|
account: account,
|
|
|
|
relationship: relationship,
|
|
|
|
verifyCredentials: verifyCredentials
|
2018-04-04 21:45:19 -07:00
|
|
|
})
|
|
|
|
}
|