From 4d02744dfab8a49075b82a5ddbdc02e08c7e8a66 Mon Sep 17 00:00:00 2001 From: Iaroslav Date: Sat, 23 Oct 2021 19:16:01 +0500 Subject: Add active dialog title feature (#2114) https://github.com/getferdi/ferdi/issues/1280 WhatsApp-like services can set active dialog title to the app title eg. Ferdi - WhatsApp - Contact Name --- src/actions/service.ts | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/actions') diff --git a/src/actions/service.ts b/src/actions/service.ts index e56513f8f..aa02c860a 100644 --- a/src/actions/service.ts +++ b/src/actions/service.ts @@ -39,6 +39,10 @@ export default { serviceId: PropTypes.string.isRequired, count: PropTypes.object.isRequired, }, + setDialogTitle: { + serviceId: PropTypes.string.isRequired, + dialogTitle: PropTypes.string.isRequired, + }, setWebviewReference: { serviceId: PropTypes.string.isRequired, webview: PropTypes.object.isRequired, -- cgit v1.2.3-54-g00ecf