wip: use GenderIconEnum to allow user to select bootstrap icon

This commit is contained in:
2024-09-26 15:45:44 +02:00
parent 67a6eb17db
commit 567c01f395
6 changed files with 30 additions and 13 deletions

View File

@@ -0,0 +1,12 @@
<?php
namespace Chill\MainBundle\Entity;
enum GenderIconEnum: string
{
case MALE = 'bi bi-gender-male';
case FEMALE = 'bi bi-gender-female';
case NEUTRAL = 'bi bi-gender-neuter';
case AMBIGUOUS = 'bi bi-gender-ambiguous';
case TRANS = 'bi bi-gender-trans';
}