Added new plugin

This commit is contained in:
Wyatt Johnson
2018-04-09 15:58:31 -06:00
parent 5941bfac7c
commit 333ef98378
18 changed files with 596 additions and 0 deletions
@@ -0,0 +1,18 @@
import update from 'immutability-helper';
export default {
mutations: {
DownloadCommentHistory: () => ({
updateQueries: {
CoralEmbedStream_Profile: previousData =>
update(previousData, {
me: {
lastAccountDownload: {
$set: new Date().toISOString(),
},
},
}),
},
}),
},
};