mirror of
https://github.com/strapi/strapi.git
synced 2025-07-23 00:51:17 +00:00
12 lines
219 B
JavaScript
12 lines
219 B
JavaScript
'use strict';
|
|
|
|
const { getService } = require('../utils');
|
|
|
|
module.exports = {
|
|
listIsoLocales(ctx) {
|
|
const isoLocalesService = getService('iso-locales');
|
|
|
|
ctx.body = isoLocalesService.getIsoLocales();
|
|
},
|
|
};
|