mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
telegram: added telegram attach functionality
This commit is contained in:
parent
3e9f5dedec
commit
e994176bff
10 changed files with 131 additions and 9 deletions
|
@ -6,6 +6,7 @@ import { LoginSocialRegisterDialog } from '~/containers/dialogs/LoginSocialRegis
|
|||
import { PhotoSwipe } from '~/containers/dialogs/PhotoSwipe';
|
||||
import { RestorePasswordDialog } from '~/containers/dialogs/RestorePasswordDialog';
|
||||
import { RestoreRequestDialog } from '~/containers/dialogs/RestoreRequestDialog';
|
||||
import { TelegramAttachDialog } from '~/containers/dialogs/TelegramAttachDialog';
|
||||
import { TestDialog } from '~/containers/dialogs/TestDialog';
|
||||
|
||||
export enum Dialog {
|
||||
|
@ -18,6 +19,7 @@ export enum Dialog {
|
|||
Photoswipe = 'Photoswipe',
|
||||
CreateNode = 'CreateNode',
|
||||
EditNode = 'EditNode',
|
||||
TelegramAttach = 'TelegramAttach',
|
||||
}
|
||||
|
||||
export const DIALOG_CONTENT = {
|
||||
|
@ -30,4 +32,5 @@ export const DIALOG_CONTENT = {
|
|||
[Dialog.Photoswipe]: PhotoSwipe,
|
||||
[Dialog.CreateNode]: EditorCreateDialog,
|
||||
[Dialog.EditNode]: EditorEditDialog,
|
||||
[Dialog.TelegramAttach]: TelegramAttachDialog,
|
||||
} as const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue