Merge pull request #1250 from MetaMask/notice-modification
Erase notice body when readfeature/default_network_editable
commit
c45ed395a6
@ -0,0 +1,36 @@ |
|||||||
|
const version = 12 |
||||||
|
|
||||||
|
/* |
||||||
|
|
||||||
|
This migration modifies our notices to delete their body after being read. |
||||||
|
|
||||||
|
*/ |
||||||
|
|
||||||
|
const clone = require('clone') |
||||||
|
|
||||||
|
module.exports = { |
||||||
|
version, |
||||||
|
|
||||||
|
migrate: function (originalVersionedData) { |
||||||
|
let versionedData = clone(originalVersionedData) |
||||||
|
versionedData.meta.version = version |
||||||
|
try { |
||||||
|
const state = versionedData.data |
||||||
|
const newState = transformState(state) |
||||||
|
versionedData.data = newState |
||||||
|
} catch (err) { |
||||||
|
console.warn(`MetaMask Migration #${version}` + err.stack) |
||||||
|
} |
||||||
|
return Promise.resolve(versionedData) |
||||||
|
}, |
||||||
|
} |
||||||
|
|
||||||
|
function transformState (state) { |
||||||
|
const newState = state |
||||||
|
newState.NoticeController.noticesList.forEach((notice) => { |
||||||
|
if (notice.read) { |
||||||
|
notice.body = '' |
||||||
|
} |
||||||
|
}) |
||||||
|
return newState |
||||||
|
} |
Loading…
Reference in new issue