15 lines
344 B
JavaScript
15 lines
344 B
JavaScript
'use strict'
|
|
const debug = require('debug')
|
|
const { registerOrUpdateScope } = require('@/modules/shared')
|
|
|
|
exports.init = async () => {
|
|
debug('speckle:modules')('💌 Init invites module')
|
|
|
|
const scopes = require('./scopes.js')
|
|
for (const scope of scopes) {
|
|
await registerOrUpdateScope(scope)
|
|
}
|
|
}
|
|
|
|
exports.finalize = async () => {}
|