mirror of
https://github.com/strapi/strapi.git
synced 2025-07-25 18:05:07 +00:00

* feat(content-releases): show release scheduled date * add future flag checks * apply Madhuri feedback * change env to use env.bool
6 lines
147 B
JavaScript
6 lines
147 B
JavaScript
module.exports = ({ env }) => ({
|
|
future: {
|
|
contentReleasesScheduling: env.bool('STRAPI_FUTURE_CONTENT_RELEASES_SCHEDULING', false),
|
|
},
|
|
});
|