jiti-meet/react/features/base/logging
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
..
JitsiMeetInMemoryLogStorage.js ref(JitsiMeetLogStorage): move to base/logging 2019-02-01 10:34:03 +01:00
JitsiMeetLogStorage.js fix(JitsiMeetLogStorage): do not log whole message 2019-02-01 10:34:03 +01:00
actionTypes.js chore: use strings as action types 2019-03-21 14:47:55 +01:00
actions.js feat(RN): enable log collector on mobile 2019-02-01 10:34:03 +01:00
index.js Introduce features/base/logging 2017-04-23 23:30:53 -05:00
middleware.js ref(JitsiMeetLogStorage): move to base/logging 2019-02-01 10:34:03 +01:00
reducer.js feat(RN): enable log collector on mobile 2019-02-01 10:34:03 +01:00