jiti-meet/react/features/dropbox
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 Update dropbox redirect uri to always use the main domain static page. 2019-03-07 15:39:16 +00:00
functions.any.js ref(dropbox): Consistency for the naming around the app key. 2018-09-27 01:42:59 -05:00
functions.native.js Updates recording dialog. (#3953) 2019-03-11 09:17:21 -07:00
functions.web.js fix(dropbox-auth): In Electron. 2019-02-27 16:12:54 +00:00
index.js feat(dropbox): For mobile. 2018-09-27 01:42:59 -05:00
reducer.js fix(dropbox): Address code review comments. 2018-08-16 13:53:43 -05:00