Custom Doctype under Project Module

I have a custom Doctype for module project when I create custom doctype it sits sperate not under project

Hi @hereabdulla,

Please check erpnext/projects.py at develop · frappe/erpnext · GitHub to create doctype entry under Projects.

Thanks, Makarand

I already done that but it shows nothing

can you share your code ?

def get_data():
    return [
        {
            "label": _("Projects"),
            "icon": "icon-star",
            "items": [
                {
                    "type": "doctype",
                    "name": "Project",
                    "description": _("Project master."),
                },
                {
                    "type": "doctype",
                    "name": "Task",
                    "description": _("Project activity / task."),
                },
                {
                    "type": "doctype",
                    "name": "Interview",
                    "description": _("Interviews for Projects"),
                },        
                {
                    "type": "report",
                    "route": "Gantt/Task",
                    "doctype": "Task",
                    "name": "Gantt Chart",
                    "description": _("Gantt chart of all tasks.")
                },
                
            ]
        },