Changing the slug produces the CategorySlugChanged Message.

interface CategoryChangeSlugAction {
    action: "changeSlug";
    slug: LocalizedString;
}

Properties

Properties

action: "changeSlug"

New value to set. Must not be empty. A Category can have the same slug for different Locales, but it must be unique across the Project. Valid slugs must match the pattern ^[A-Za-z0-9_-]{2,256}+$.

Generated using TypeDoc