
* feat: allow users to set google meet as a location for events - add google meet location with support for other integrations * return location types from server also avoids potential leaks of user credentials * chore: remove unused variable * fix: return minimal required data from server
7 lines
123 B
TypeScript
7 lines
123 B
TypeScript
|
|
export enum LocationType {
|
|
InPerson = 'inPerson',
|
|
Phone = 'phone',
|
|
GoogleMeet = 'integrations:google:meet'
|
|
}
|
|
|