絵文字を作成した/更新した時にupdateAtを更新するように

This commit is contained in:
syuilo 2018-11-04 10:42:16 +09:00
parent 7c3873887d
commit b7a15bf6ca
No known key found for this signature in database
GPG Key ID: BDC4C49D06AB9D69
2 changed files with 2 additions and 0 deletions

View File

@ -28,6 +28,7 @@ export const meta = {
export default define(meta, (ps) => new Promise(async (res, rej) => {
await Emoji.insert({
updatedAt: new Date(),
name: ps.name,
host: null,
aliases: ps.aliases,

View File

@ -39,6 +39,7 @@ export default define(meta, (ps) => new Promise(async (res, rej) => {
await Emoji.update({ _id: emoji._id }, {
$set: {
updatedAt: new Date(),
name: ps.name,
aliases: ps.aliases,
url: ps.url