Skip to content

Commit 7cb7053

Browse files
committed
Remove some more unused variables
Signed-off-by: Andres Tobon <andrest2455@gmail.com>
1 parent c80e61b commit 7cb7053

File tree

2 files changed

+0
-39
lines changed

2 files changed

+0
-39
lines changed

packages/shared/src/constants/meeting.constants.ts

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -319,32 +319,6 @@ export const RECURRENCE_WEEKLY_ORDINALS = [
319319
{ label: 'Last', value: -1 },
320320
];
321321

322-
// ============================================================================
323-
// RSVP Scope Options
324-
// ============================================================================
325-
326-
/**
327-
* RSVP scope options for recurring meetings
328-
* @description Pre-defined options for selecting which occurrences an RSVP applies to
329-
*/
330-
export const RSVP_SCOPE_OPTIONS = [
331-
{
332-
value: 'single' as const,
333-
label: 'This occurrence only',
334-
description: 'Apply this RSVP to only this specific meeting',
335-
},
336-
{
337-
value: 'all' as const,
338-
label: 'All occurrences',
339-
description: 'Apply this RSVP to all occurrences in the series',
340-
},
341-
{
342-
value: 'following' as const,
343-
label: 'This and following occurrences',
344-
description: 'Apply this RSVP to this meeting and all future occurrences',
345-
},
346-
];
347-
348322
// ============================================================================
349323
// Template Re-exports
350324
// ============================================================================

packages/shared/src/interfaces/meeting.interface.ts

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -704,19 +704,6 @@ export type RsvpResponse = 'accepted' | 'maybe' | 'declined';
704704
*/
705705
export type RsvpScope = 'single' | 'all' | 'following';
706706

707-
/**
708-
* RSVP scope option
709-
* @description Configuration for displaying RSVP scope options in UI
710-
*/
711-
export interface RsvpScopeOption {
712-
/** The scope value */
713-
value: RsvpScope;
714-
/** Display label for the option */
715-
label: string;
716-
/** Description text explaining the scope */
717-
description: string;
718-
}
719-
720707
/**
721708
* RSVP counts by response type
722709
* @description Aggregated counts of RSVPs grouped by response

0 commit comments

Comments
 (0)