2018-04-09 01:56:20 +02:00
|
|
|
import PostPrivacyDialog from '../components/PostPrivacyDialog.html'
|
|
|
|
import { createDialogElement } from '../helpers/createDialogElement'
|
|
|
|
import { createDialogId } from '../helpers/createDialogId'
|
2018-03-03 22:23:26 +01:00
|
|
|
|
2018-04-21 18:56:53 +02:00
|
|
|
export default function showPostPrivacyDialog (realm) {
|
2018-03-03 22:23:26 +01:00
|
|
|
let dialog = new PostPrivacyDialog({
|
2018-04-01 03:46:44 +02:00
|
|
|
target: createDialogElement(),
|
2018-03-03 22:23:26 +01:00
|
|
|
data: {
|
2018-04-09 01:56:20 +02:00
|
|
|
id: createDialogId(),
|
2018-03-03 22:23:26 +01:00
|
|
|
label: 'Post privacy dialog',
|
|
|
|
title: 'Post privacy',
|
|
|
|
realm: realm
|
|
|
|
}
|
|
|
|
})
|
|
|
|
dialog.show()
|
|
|
|
}
|