Hi all,<div>I added magma session to my application seaside session (a subclass of WASession) so each user has his own magma session. My problem is with magritte description because I need, on the class side, set list of options. By example: </div>
<div><br></div><div><div>User class &gt;&gt;descriptionRol </div><div>&quot;Answer a magritte meta description for the receiver rol attribute.&quot;</div><div><br></div><div><span class="Apple-tab-span" style="white-space:pre">        </span>^MAMultipleOptionDescription new</div>
<div><span class="Apple-tab-span" style="white-space:pre">                </span>accessor: #roles;</div><div><span class="Apple-tab-span" style="white-space:pre">                </span>label: &#39;Roles&#39;;</div><div><span class="Apple-tab-span" style="white-space:pre">                </span>priority: 200;</div>
<div><span class="Apple-tab-span" style="white-space:pre">                </span>componentClass: MAListCompositonComponent;</div><div><span class="Apple-tab-span" style="white-space:pre">                </span>options: MySystem singleton roles;</div>
<div><span class="Apple-tab-span" style="white-space:pre">                </span>beSorted; </div><div><span class="Apple-tab-span" style="white-space:pre">                </span>yourself</div></div><div><br></div><div>The problem is &quot;MySystem singleton roles&quot; beacuse is in other magma session when the user add or edit an instance of User on the seaside application.</div>
<div>I &quot;hack&quot; my seaside components to override the options with a collection of instances (by example: Rol allInSession: aUserSession) inside of the user session but it&#39;s very ugly. Just a test. How do you configure the maggrite description to deal with this problem? Is a common practice add a new magma session in every session session?</div>
<div><br></div><div>Thanks in advance,</div><div>Facu</div>