Strapi logo
Strapi
Create
Roadmap
Feedback
Developer Experience
376
Changelog

    Boards

  • Content Editing XP

  • Developer Experience

  • Documentation

  • Other

  • Strapi Cloud

  • Plugin Requests

  • Security

Powered by Canny

Developer Experience

posts
Add a "folder-like" group function to organize content types
I believe it would greatly improve the user experience if we can add a "folder-like" grouping function to content types (single type and collection type), so that if you have a lot of content types (for example if you have like 50 webpages, you will have like 50 single types), it really makes a lot more sense to have groups. For now users can only mitigate this by using some naming conventions, but I doubt if this is an elegant solution.
106
·
planned
Custom indexes in the schema
Basically the ability to define indexes in a standard way via the schema file (and maybe in the future via the CTB) module.exports = { collectionName: 'user', info: { singularName: 'user', pluralName: 'users', displayName: 'User', }, options: {}, pluginOptions: { }, attributes: { fullName: { type: 'string', min: 1, required: true, }, }, // experimental feature: indexes: [ { name: 'upload_folders_path_id_index', // this should be optional columns: ['full_name'], // This should be the name of the attribute not the db column name type: 'unique', }, ], };
9
·
planned
Powered by Canny