mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 13:54:35 +03:00
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:
parent
dbdf7160bf
commit
6e14047a2a
@ -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.'
|
||||
|
Loading…
Reference in New Issue
Block a user