Skip to content

Commit

Permalink
Merge branch 'master' of github.com:LitusProject/Litus
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrodevog committed Oct 16, 2023
2 parents f54d974 + 38faa76 commit 4443bca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion module/ApiBundle/Controller/BrController.php
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ public function sendActivationAction()
* "first_name": "first name"
* "last_name": "last name"
* "email": "email"
* "sex": "m/f/null"
* "sex": "m/f/x/null"
* "company": "company id"
* }
*/
Expand Down
2 changes: 1 addition & 1 deletion module/BrBundle/Entity/Cv/Entry.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class Entry
private $birthday;

/**
* @var string The persons sex ('m' or 'f')
* @var string The persons sex ('m', 'f' or 'x')
*
* @ORM\Column(type="string", length=1, nullable=true)
*/
Expand Down
1 change: 1 addition & 0 deletions module/SecretaryBundle/Form/Registration/Add.php
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ public function init()
'options' => array(
'm' => 'M',
'f' => 'F',
'x' => 'X',
),
),
),
Expand Down

0 comments on commit 4443bca

Please sign in to comment.