aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/migrations/033.js
blob: 3abb2593ed631247da58eeeaeabf2c36ba49fd97 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// next version number
const version = 33

/*

Cleans up notices and assocated notice controller code

*/

const clone = require('clone')

module.exports = {
  version,

  migrate: async function (originalVersionedData) {
    const versionedData = clone(originalVersionedData)
    versionedData.meta.version = version
    const state = versionedData.data
    const newState = transformState(state)
    versionedData.data = newState
    return versionedData
  },
}

function transformState (state) {
  const newState = state
  // transform state here
  if (state.NoticeController) {
    delete newState.NoticeController
  }
  return newState
}