mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 19:27:52 +01:00
14 lines
392 B
Plaintext
14 lines
392 B
Plaintext
<%=
|
|
react_component(
|
|
'Board',
|
|
{
|
|
board: @board,
|
|
isLoggedIn: user_signed_in?,
|
|
isPowerUser: user_signed_in? ? current_user.moderator? : false,
|
|
currentUserFullName: user_signed_in? ? current_user.full_name_or_email : '',
|
|
tenantSetting: @tenant_setting,
|
|
componentRenderedAt: Time.now.to_i,
|
|
authenticityToken: form_authenticity_token
|
|
}
|
|
)
|
|
%> |