Loading .gitignore +2 −1 Original line number Diff line number Diff line Loading @@ -12,3 +12,4 @@ npm-debug.log* # strapi /.strapi /public No newline at end of file .husky/pre-commit 0 → 100755 +4 −0 Original line number Diff line number Diff line STAGED_FILES=$(git diff --cached --name-only --diff-filter=d) npm run lint:fix git add $STAGED_FILES No newline at end of file .prettierrc 0 → 100644 +1 −0 Original line number Diff line number Diff line {} .strapi-updater.json +4 −3 Original line number Diff line number Diff line { "latest": "5.12.3", "lastUpdateCheck": 1743759948996 "latest": "5.12.4", "lastUpdateCheck": 1744262333706, "lastNotification": 1744262491140 } config/admin.ts +5 −5 Original line number Diff line number Diff line export default ({ env }) => ({ auth: { secret: env('ADMIN_JWT_SECRET'), secret: env("ADMIN_JWT_SECRET"), }, apiToken: { salt: env('API_TOKEN_SALT'), salt: env("API_TOKEN_SALT"), }, transfer: { token: { salt: env('TRANSFER_TOKEN_SALT'), salt: env("TRANSFER_TOKEN_SALT"), }, }, flags: { nps: env.bool('FLAG_NPS', true), promoteEE: env.bool('FLAG_PROMOTE_EE', true), nps: env.bool("FLAG_NPS", true), promoteEE: env.bool("FLAG_PROMOTE_EE", true), }, }); Loading
.gitignore +2 −1 Original line number Diff line number Diff line Loading @@ -12,3 +12,4 @@ npm-debug.log* # strapi /.strapi /public No newline at end of file
.husky/pre-commit 0 → 100755 +4 −0 Original line number Diff line number Diff line STAGED_FILES=$(git diff --cached --name-only --diff-filter=d) npm run lint:fix git add $STAGED_FILES No newline at end of file
.strapi-updater.json +4 −3 Original line number Diff line number Diff line { "latest": "5.12.3", "lastUpdateCheck": 1743759948996 "latest": "5.12.4", "lastUpdateCheck": 1744262333706, "lastNotification": 1744262491140 }
config/admin.ts +5 −5 Original line number Diff line number Diff line export default ({ env }) => ({ auth: { secret: env('ADMIN_JWT_SECRET'), secret: env("ADMIN_JWT_SECRET"), }, apiToken: { salt: env('API_TOKEN_SALT'), salt: env("API_TOKEN_SALT"), }, transfer: { token: { salt: env('TRANSFER_TOKEN_SALT'), salt: env("TRANSFER_TOKEN_SALT"), }, }, flags: { nps: env.bool('FLAG_NPS', true), promoteEE: env.bool('FLAG_PROMOTE_EE', true), nps: env.bool("FLAG_NPS", true), promoteEE: env.bool("FLAG_PROMOTE_EE", true), }, });