mirror of
https://github.com/strapi/strapi.git
synced 2025-11-02 19:04:38 +00:00
Hide specific model fields from response
This commit is contained in:
parent
7f2a5cbb66
commit
2f8169c792
@ -25,7 +25,8 @@
|
||||
"password": {
|
||||
"type": "password",
|
||||
"minLength": 6,
|
||||
"configurable": false
|
||||
"configurable": false,
|
||||
"private": true
|
||||
},
|
||||
"resetPasswordToken": {
|
||||
"type": "string",
|
||||
|
||||
@ -244,6 +244,9 @@ module.exports.app = async function() {
|
||||
boom: {
|
||||
enabled: true
|
||||
},
|
||||
mask: {
|
||||
enabled: true
|
||||
},
|
||||
// Necessary middlewares for the administration panel.
|
||||
cors: {
|
||||
enabled: true
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user