Strapi
- 1 ответ
- 0 вопросов
0
Вклад в тег
strapi.db.lifecycles.subscribe({
models: ["api::post.post"],
async beforeCreate(event) {
const ctx = strapi.requestContext.get();
event.params.data = {
...event.params.data,
author: ctx.state.user.id
}
}
})