mirror of
https://github.com/mastodon/mastodon.git
synced 2024-08-20 21:08:15 -07:00
8 lines
157 B
JavaScript
8 lines
157 B
JavaScript
export const ACCESS_TOKEN_SET = 'ACCESS_TOKEN_SET';
|
|
|
|
export function setAccessToken(token) {
|
|
return {
|
|
type: ACCESS_TOKEN_SET,
|
|
token: token
|
|
};
|
|
};
|