2018-10-29 02:09:58 +00:00
|
|
|
import { make } from 'vuex-pathify'
|
|
|
|
|
|
|
|
const state = {
|
|
|
|
id: 0,
|
|
|
|
authorId: 0,
|
|
|
|
authorName: 'Unknown',
|
|
|
|
createdAt: '',
|
|
|
|
description: '',
|
|
|
|
isPublished: true,
|
|
|
|
locale: 'en',
|
|
|
|
path: '',
|
2018-11-18 04:03:58 +00:00
|
|
|
publishEndDate: '',
|
|
|
|
publishStartDate: '',
|
2018-10-29 02:09:58 +00:00
|
|
|
tags: [],
|
|
|
|
title: '',
|
2018-11-19 06:08:55 +00:00
|
|
|
updatedAt: '',
|
2020-05-17 22:38:23 +00:00
|
|
|
mode: '',
|
2020-05-27 02:56:11 +00:00
|
|
|
commentsPermissions: {
|
|
|
|
read: false,
|
|
|
|
write: false,
|
2020-05-17 22:38:23 +00:00
|
|
|
manage: false
|
2020-05-18 04:45:51 +00:00
|
|
|
},
|
|
|
|
commentsCount: 0
|
2018-10-29 02:09:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default {
|
|
|
|
namespaced: true,
|
|
|
|
state,
|
|
|
|
mutations: make.mutations(state)
|
|
|
|
}
|