jiti-meet/react/features/base/media
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
..
components ref(video): remove deprecated lifecycle methods from gesture handler 2018-12-03 11:45:09 +01:00
actionTypes.js chore: use strings as action types 2019-03-21 14:47:55 +01:00
actions.js Add pinch zoom functionality 2018-04-10 01:20:53 -05:00
constants.js [RN] Refactor video muting 2017-08-04 16:07:48 -05:00
functions.js ref: move all prop type declaration to flow 2018-11-07 17:38:10 +01:00
index.js Consistent middleware and reducer imports 2017-02-10 11:04:40 -06:00
middleware.js [RN] Fix for creating video track when conference is ending. 2018-06-20 11:24:07 +02:00
reducer.js Proper use of getPropertyValue in base/media 2018-04-13 21:57:40 -05:00