about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/actions/emojis.js
blob: 3b5d53996c82047d5d62767d711c96e37e343c58 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { saveSettings } from './settings';

export const EMOJI_USE = 'EMOJI_USE';

export function useEmoji(emoji) {
  return dispatch => {
    dispatch({
      type: EMOJI_USE,
      emoji,
    });

    dispatch(saveSettings());
  };
}