管理員(user)

  1. 註冊

    由開發部幫忙進行註冊

  2. 登入

    帳號、密碼

users: {
  _id: <ObjectId>,
	username: <String>,
	password: <String>
}

最新消息

  1. 新增
    1. 紀錄標題、內文、新增時間、編輯時間、編輯人、Tag
    2. Markdown Editor
  2. 刪除
  3. 修改

unix timestamp

informations: {
	_id: <ObjectId>,
	user_id: <ObjectId>,
	tag_id: <ObjectId>,
	title: <String>,
	content: <String>,
	created_at: <Number>,
	updated_at: <Number>
}

Index:
{ title: 'text' }
{ created_at: -1 }
{ updated_at: -1 }
{ tag_id: 1 }

tags: {
	_id: <ObjectId>,
	name: <String>,
	color: <Number>
}

活動集錦

  1. 新增
    1. Markdown Editor (跟 medium 一樣)
    2. 標題、副標題、縮圖、內文、新增時間、編輯時間、編輯人、Embed youtube links
  2. 編輯
  3. 刪除
posts: {
		_id: <ObjectId>,
		user_id: <ObjectId>,
		title: <String>,
		subtitle: <String>,
		cover: <Object<File>>, // Cloud storage -> AWS s3, Google GCS { file_url, file_name, file_type }
		content: <String>,
		youtube_embed_links: <Array<Object>>, { url, text }
		created_at: <Number>,
		updated_at: <Number>
}

Index:
{ title: 'text' }
{ created_at: -1 }
{ updated_at: -1 }