mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 11:17:49 +01:00
12 lines
311 B
Plaintext
12 lines
311 B
Plaintext
<%=
|
|
react_component(
|
|
'Post',
|
|
{
|
|
postId: @post.id,
|
|
postStatuses: @post_statuses,
|
|
isLoggedIn: user_signed_in?,
|
|
isPowerUser: user_signed_in? ? (current_user.role == 'admin' || current_user.role == 'moderator') : false,
|
|
authenticityToken: form_authenticity_token,
|
|
}
|
|
)
|
|
%> |