all repos — caroster @ fda8dfd8f0c5653fd865054042ea1423dbb07d12

[Octree] Group carpool to your event https://caroster.io

backend/extensions/email-designer/services/template.js (view raw)

 1'use strict';
 2
 3module.exports = {
 4  getId: async templateName => {
 5    const template = await strapi.plugins[
 6      'email-designer'
 7    ].services.template.fetch({name: templateName});
 8    if (!template)
 9      throw new Error(`No email template with name ${templateName}`);
10    return template.id;
11  },
12};