假设我有一个User
具有 ausername
和 a的模型full_name
。我想渲染一个用户对象,Active Model Serializer
并且只根据它current_user
是 nil 还是登录来渲染特定的参数。由于我也在使用pundit
,我想知道是否有办法使用pundit
.
例如
用户是nil
{id:1, username: 'foo'}
用户是logged in
{id:1, username: 'foo', full_name: 'bar'}