mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-08 00:43:15 +00:00
92afd29650
Adding better errors for the API controllers, posting a simple status works from the frontend now
9 lines
156 B
JavaScript
9 lines
156 B
JavaScript
export const SET_ACCESS_TOKEN = 'SET_ACCESS_TOKEN';
|
|
|
|
export function setAccessToken(token) {
|
|
return {
|
|
type: SET_ACCESS_TOKEN,
|
|
token: token
|
|
};
|
|
}
|