10 lines
305 B
JavaScript
10 lines
305 B
JavaScript
'use strict'
|
|
|
|
module.exports.register = function () {
|
|
this.once('contentAggregated', ({ contentAggregate }) => {
|
|
contentAggregate.forEach((componentVersionBucket) => {
|
|
Object.assign(componentVersionBucket, { name: 'session', display: 'Spring Session', title: 'Spring Session' })
|
|
})
|
|
})
|
|
}
|