Open Apmannen opened 5 months ago
Can we add meta to categories? If so, we could have some static types for them rather than ID or slug.
Actually, ID is more static than slug.
Current solution:
public static string GetSlugByType(CategoryType categoryType) { return categoryType switch { CategoryType.GameReview => "tv-spelrecensioner", CategoryType.Game => "spel", CategoryType.Other => "okategoriserade", _ => "" }; }
Can we add meta to categories? If so, we could have some static types for them rather than ID or slug.
Actually, ID is more static than slug.
Current solution:
public static string GetSlugByType(CategoryType categoryType) { return categoryType switch { CategoryType.GameReview => "tv-spelrecensioner", CategoryType.Game => "spel", CategoryType.Other => "okategoriserade", _ => "" }; }