Skip to content
Snippets Groups Projects
classification.js 224 B
Newer Older
const { ClassificationRoot } = require('database/models')

module.exports = async (id, ctx, next) => {
	ctx.models = ctx.models ?? {}
	ctx.models.classification = await ClassificationRoot.findByPk(id)
	return await next()
}