Skip to content

Commit

Permalink
changed exclusion-policy to all (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
chirimoya authored Aug 31, 2016
2 parents b3b18b1 + d798599 commit 0ff5073
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions Resources/config/serializer/Document.ArticleViewDocument.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<serializer>
<class name="Sulu\Bundle\ArticleBundle\Document\ArticleViewDocument">
<property name="uuid" serialized-name="id" type="string"/>
<property name="title" type="string"/>
<property name="creator" type="string"/>
<property name="changer" type="string"/>
<property name="created" type="DateTime"/>
<property name="changed" type="DateTime"/>
<class name="Sulu\Bundle\ArticleBundle\Document\ArticleViewDocument" exclusion-policy="ALL">
<property name="uuid" serialized-name="id" type="string" expose="true"/>
<property name="title" type="string" expose="true"/>
<property name="creator" type="string" expose="true"/>
<property name="changer" type="string" expose="true"/>
<property name="created" type="DateTime" expose="true"/>
<property name="changed" type="DateTime" expose="true"/>
<property name="authored" type="DateTime" expose="true"/>
</class>
</serializer>

0 comments on commit 0ff5073

Please sign in to comment.