Replace i18n with tpl in core/server/api/v3/memberSigninUrls.js (#13584)

refs: #13380

- The i18n package is deprecated. It is being replaced with the tpl package.
This commit is contained in:
PJ 2021-10-13 19:05:38 +11:00 committed by GitHub
parent dbdf7160bf
commit 6e14047a2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,9 @@
const tpl = require('@tryghost/tpl');
const errors = require('@tryghost/errors');
const membersService = require('../../services/members');
const messages = {
memberNotFound: 'Member not found.'
};
const messages = {
memberNotFound: 'Member not found.'