about summary refs log tree commit diff
path: root/app/assets/javascripts/components/actions/meta.jsx
blob: e0f127231da2b2110d2aead4a415b136f682eb3f (plain) (blame)
1
2
3
4
5
6
7
8
export const ACCESS_TOKEN_SET = 'ACCESS_TOKEN_SET';

export function setAccessToken(token) {
  return {
    type: ACCESS_TOKEN_SET,
    token: token
  };
}