UNPKG

tfk-saksbehandling-elev-varsel

Version:
21 lines (17 loc) 415 B
'use strict' var templates = { 'atferd': 'atferd.docx', 'fag': 'fag.docx', 'foresatte': 'foresatte.docx', 'hemmelig-adresse': 'hemmelig-adresse.docx', 'orden': 'orden.docx' } function getTemplatePath (id) { var doc = templates[id] if (!doc) { throw new Error('Template not found') } else { return __dirname.replace('/lib', '') + '/templates/' + doc } } module.exports = getTemplatePath