mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
9 lines
156 B
React
9 lines
156 B
React
|
export const SET_ACCESS_TOKEN = 'SET_ACCESS_TOKEN';
|
||
|
|
||
|
export function setAccessToken(token) {
|
||
|
return {
|
||
|
type: SET_ACCESS_TOKEN,
|
||
|
token: token
|
||
|
};
|
||
|
}
|