Can i make records by published by default?

System Information
  • Strapi Version: 3.2.4
  • Operating System: Linux 5.16.0
  • Database: PostgreSQL 13.4
  • Node Version: 17.3.0
  • NPM Version: 8.3.0
  • Yarn Version: 1.22.17

It is just necessary that when creating a post, it should be published immediately and then, if desired, it could be made a draft. Can Strapi do it?

Yes, see here on how to deactivate the draft feature.

Without disabling the plugin, I think you can use a beforeCreate lifecycle to force the content to be published

1 Like

Thanks you very mach! It resolved all my problems.