mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-04 14:04:39 +00:00
9 lines
156 B
JavaScript
9 lines
156 B
JavaScript
export const ACCESS_TOKEN_SET = 'ACCESS_TOKEN_SET';
|
|
|
|
export function setAccessToken(token) {
|
|
return {
|
|
type: ACCESS_TOKEN_SET,
|
|
token: token
|
|
};
|
|
}
|