mirror of
https://github.com/yingziwu/mastodon.git
synced 2026-02-04 11:35:13 +00:00
Adding better errors for the API controllers, posting a simple status works from the frontend now
8 lines
156 B
JavaScript
8 lines
156 B
JavaScript
export const SET_ACCESS_TOKEN = 'SET_ACCESS_TOKEN';
|
|
|
|
export function setAccessToken(token) {
|
|
return {
|
|
type: SET_ACCESS_TOKEN,
|
|
token: token
|
|
};
|
|
}
|