jiti-meet/react/features/base/tracks
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
..
actionTypes.js chore: use strings as action types 2019-03-21 14:47:55 +01:00
actions.js Fix eslint/jsdoc warnings (doc change only!) 2018-11-08 15:52:34 +01:00
functions.js feat(screenshare): use camera as a screenshare source 2019-01-11 09:52:53 -08:00
index.js Consistent middleware and reducer imports 2017-02-10 11:04:40 -06:00
middleware.js Move a couple calls to update VideoLayout into the redux update flow (#3173) 2018-06-21 21:33:33 -07:00
reducer.js Coding style, consistency 2017-11-15 09:23:22 -06:00