UNPKG

strapi-plugin-i18n

Version:

This plugin enables to create, to read and to update content in different languages, both from the Admin Panel and from the API

12 lines (8 loc) 219 B
'use strict'; const { getService } = require('../utils'); module.exports = { listIsoLocales(ctx) { const isoLocalesService = getService('iso-locales'); ctx.body = isoLocalesService.getIsoLocales(); }, };