Skip to content
This repository has been archived by the owner on Apr 11, 2018. It is now read-only.

Commit

Permalink
added extra fields to grouping
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyquinton committed Sep 24, 2014
1 parent bac41a9 commit cc44ba4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/Opg/Core/Model/Entity/Assignable/AssignableComposite.php
Expand Up @@ -41,7 +41,7 @@ abstract class AssignableComposite implements IsAssignee, \IteratorAggregate
* @ORM\GeneratedValue(strategy = "AUTO")
* @ORM\Id
* @var integer
* @Groups({"api-poa-list","api-task-list","api-person-get"})
* @Groups({"api-poa-list","api-task-list","api-person-get","api-warning-list"})
* @Accessor(getter="getId", setter="setId")
*/
protected $id;
Expand Down Expand Up @@ -91,7 +91,7 @@ abstract class AssignableComposite implements IsAssignee, \IteratorAggregate
/**
* @ORM\Column(type = "string")
* @var string
* @Groups({"api-poa-list","api-task-list","api-person-get"})
* @Groups({"api-poa-list","api-task-list","api-person-get","api-warning-list"})
* @Accessor(getter="getName", setter="setName")
*/
protected $name;
Expand All @@ -108,7 +108,7 @@ abstract class AssignableComposite implements IsAssignee, \IteratorAggregate
* @var string
* @Type("string")
* @Accessor(getter="getDisplayName")
* @Groups({"api-poa-list","api-task-list","api-person-get"})
* @Groups({"api-poa-list","api-task-list","api-person-get","api-warning-list"})
* @ReadOnly
*/
protected $displayName;
Expand Down
2 changes: 1 addition & 1 deletion src/Opg/Core/Model/Entity/Assignable/Assignee.php
Expand Up @@ -19,7 +19,7 @@ trait Assignee
* @MaxDepth(1)
* @var AssignableComposite
* @ReadOnly
* @Groups({"api-poa-list","api-task-list","api-person-get"})
* @Groups({"api-poa-list","api-task-list","api-person-get","api-warning-list"})
* @Accessor(getter="getAssignee", setter="setAssignee")
*/
protected $assignee;
Expand Down

0 comments on commit cc44ba4

Please sign in to comment.