jiti-meet/react/features/mobile/call-integration
Saúl Ibarra Corretgé 0e92e73789 chore: use strings as action types
Using anything non-serializable for action types is discouraged:
https://redux.js.org/faq/actions#actions

In fact, this is the Flow definition for dispatching actions:

declare export type DispatchAPI<A> = (action: A) => A;
declare export type Dispatch<A: { type: $Subtype<string> }> = DispatchAPI<A>;

Note how the `type` field is defined as a subtype of string, which Symbol isn’t.
2019-03-21 14:47:55 +01:00
..
CallKit.js android: add ConnectionService 2019-01-31 17:20:53 +01:00
CallKitIcon.png android: add ConnectionService 2019-01-31 17:20:53 +01:00
ConnectionService.js android: add ConnectionService 2019-01-31 17:20:53 +01:00
actionTypes.js chore: use strings as action types 2019-03-21 14:47:55 +01:00
index.js android: add ConnectionService 2019-01-31 17:20:53 +01:00
middleware.js fix(mobile/call-integration): cleanup if leave takes too long 2019-02-16 17:10:04 -08:00
reducer.js android: add ConnectionService 2019-01-31 17:20:53 +01:00