import type { User, UserRole } from '@/types' const CONTENT_EDITOR_ROLES: readonly UserRole[] = ['admin', 'member'] export const canEditContent = ( user: Pick | null | undefined, ): boolean => user != null && CONTENT_EDITOR_ROLES.includes (user.role)