@secure アノテーションで paramconvert で取得したオブジェクトを渡すことは可能ですか?
これは私のコードです:
/**
* @ParamConverter("construction", class="CliConsCoreBundle:Construction", options={"repository_method" = "findWithJoins"})
* @Secure(roles="ROLE_EXTRANET", options={"construction"})
* @Template
*/
public function showAction(Request $request, Construction $construction)
{ ... }
セキュリティ投票者に $construction を持たせたいのですが、可能ですか?
注釈なしで行うと、機能します。
ありがとう