shuishen
2022-07-29 71ac571768baab6ca36057be77075b80cfe74739
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
export const ARTICLE_PUBLISH = 'publishArticle'
export const ARTICLE_DELETE = 'deleteArticle'
export const ARTICLE_EDIT = 'editArticle'
export const ARTICLE_EDIT_ADD_TAG = 'addTagToArticle'
export const ARTICLE_EDIT_REMOVE_TAG = 'removeTagFromArticle'
export const ARTICLE_RESET_STATE = 'resetArticleState'
export const CHECK_AUTH = 'checkAuth'
export const COMMENT_CREATE = 'createComment'
export const COMMENT_DESTROY = 'destroyComment'
export const FAVORITE_ADD = 'addFavorite'
export const FAVORITE_REMOVE = 'removeFavorite'
export const FETCH_ARTICLE = 'fetchArticle'
export const FETCH_ARTICLES = 'fetchArticles'
export const FETCH_COMMENTS = 'fetchComments'
export const FETCH_PROFILE = 'fetchProfile'
export const FETCH_PROFILE_FOLLOW = 'fetchProfileFollow'
export const FETCH_PROFILE_UNFOLLOW = 'fetchProfileUnfollow'
export const FETCH_TAGS = 'fetchTags'
export const LOGIN = 'login'
export const LOGOUT = 'logout'
export const REGISTER = 'register'
export const UPDATE_USER = 'updateUser'