Option to send photos as high quality

This commit is contained in:
Josh Perez 2021-06-25 12:08:16 -04:00 committed by GitHub
parent 6c56d5a5f1
commit 01eabf9ec6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
44 changed files with 1263 additions and 363 deletions

View file

@ -5,6 +5,7 @@ import { actions as accounts } from './ducks/accounts';
import { actions as app } from './ducks/app';
import { actions as audioPlayer } from './ducks/audioPlayer';
import { actions as calling } from './ducks/calling';
import { actions as composer } from './ducks/composer';
import { actions as conversations } from './ducks/conversations';
import { actions as emojis } from './ducks/emojis';
import { actions as expiration } from './ducks/expiration';
@ -24,6 +25,7 @@ export const actionCreators: ReduxActions = {
app,
audioPlayer,
calling,
composer,
conversations,
emojis,
expiration,
@ -43,6 +45,7 @@ export const mapDispatchToProps = {
...app,
...audioPlayer,
...calling,
...composer,
...conversations,
...emojis,
...expiration,