4798-feat(front): Add calendar settings option in settings account dropdown (#4997)
Closes #4798  --------- Co-authored-by: bosiraphael <raphael.bosi@gmail.com>
This commit is contained in:
@ -1,7 +1,6 @@
|
||||
import { MessageChannel } from './MessageChannel';
|
||||
import { CalendarChannel } from '@/accounts/types/CalendarChannel';
|
||||
|
||||
type MessageChannelConnection = { edges: [MessageChannelEdge] };
|
||||
type MessageChannelEdge = { node: MessageChannel };
|
||||
import { MessageChannel } from './MessageChannel';
|
||||
|
||||
export type ConnectedAccount = {
|
||||
id: string;
|
||||
@ -12,5 +11,6 @@ export type ConnectedAccount = {
|
||||
accountOwnerId: string;
|
||||
lastSyncHistoryId: string;
|
||||
authFailedAt: Date | null;
|
||||
messageChannels: MessageChannelConnection;
|
||||
messageChannels: MessageChannel[];
|
||||
calendarChannels: CalendarChannel[];
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user