mirror of
https://github.com/mastodon/documentation
synced 2025-04-11 22:56:17 +02:00
9 lines
157 B
JavaScript
9 lines
157 B
JavaScript
export const ACCESS_TOKEN_SET = 'ACCESS_TOKEN_SET';
|
|
|
|
export function setAccessToken(token) {
|
|
return {
|
|
type: ACCESS_TOKEN_SET,
|
|
token: token
|
|
};
|
|
};
|