Is it possible to Export portal Settings?

how do i export the portal settings? or is it not possible?

type or paste code here
fixtures = [
    {
        "dt": "Custom Field",
        "filters": [
            [
                "dt",
                "in",
                [
                    "Issue",
                ],
            ]
        ],
    },
    {
        "dt": "Property Setter",
        "filters": [
            [
                "doc_type",
                "in",
                [
                    "Issue"  ,
                ],
            ]
        ],
    },
]

@rik_sanchez try to export the child doctypes like ‘Portal Menu Item’

@bahaou
This Way? i did this but nothing changed

type or paste code here
fixtures = [
    {
        "dt": "Custom Field",
        "filters": [
            [
                "dt",
                "in",
                [
                    "Issue",
                    "Portal Settings"
                    "Portal Menu Item"
                ],
            ]
        ],
    },
    {
        "dt": "Property Setter",
        "filters": [
            [
                "doc_type",
                "in",
                [
                    "Issue"  ,
                    "Portal Settings"
                    "Portal Menu Item"
                ],
            ]
        ],
    },
]

@bahaou Thanks man this one worked for me.

fixtures = [
    {
        "dt": "Custom Field",
        "filters": [
            [
                "dt",
                "in",
                [
                    "Issue",
                ],
            ]
        ],
    },
    {
        "dt": "Property Setter",
        "filters": [
            [
                "doc_type",
                "in",
                [
                    "Issue"  ,
                ],
            ]
        ],
    },
    "Portal Settings",
    "Portal Menu Item"
]
1 Like