

class RoleSeeder:
    roles = [
        {
            "key": "super_admin",
            "name": "Super Administrator",
            "description": "Full access to all system features and settings.",
            "is_default": True,
            "is_active": True,
        },
        {
            "key": "admin",
            "name": "Administrator",
            "description": "Full access to all system features and settings.",
            "is_default": True,
            "is_active": True,
        },
        {
            "key": "user",
            "name": "User",
            "description": "Standard user with limited access.",
            "is_default": True,
            "is_active": True,
        },
        {
            "key": "support",
            "name": "Support",
            "description": "Support staff with access to user tickets and support features.",
            "is_default": True,
            "is_active": True,
        },
    ]
