jiti-meet/react/features/settings
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 [RN] Add color scheme support to header 2019-03-12 12:36:15 +01:00
actionTypes.js chore: use strings as action types 2019-03-21 14:47:55 +01:00
actions.js Refactor settings modal (#3121) 2018-06-20 13:19:53 -07:00
constants.js Google & Microsoft calendar API integration (#3340) 2018-08-15 13:11:54 -07:00
functions.js fix eslint error 2019-03-19 21:59:45 +01:00
index.js Refactor settings modal (#3121) 2018-06-20 13:19:53 -07:00
middleware.js Grow features/settings from features/app-settings and features/settings-menu 2018-02-26 19:19:01 -06:00
popup.js Move DeviceSelectionPopup to its right place 2019-01-09 12:02:42 +01:00
reducer.js Grow features/settings from features/app-settings and features/settings-menu 2018-02-26 19:19:01 -06:00