2019-09-02 14:32:57 +02:00
|
|
|
<%=
|
|
|
|
|
react_component(
|
2019-09-02 19:59:55 +02:00
|
|
|
'Board',
|
2019-09-02 14:32:57 +02:00
|
|
|
{
|
|
|
|
|
board: @board,
|
|
|
|
|
isLoggedIn: user_signed_in?,
|
2023-02-05 11:55:38 +01:00
|
|
|
isPowerUser: user_signed_in? ? current_user.moderator? : false,
|
2024-07-12 20:38:46 +02:00
|
|
|
currentUserFullName: user_signed_in? ? current_user.full_name_or_email : '',
|
2023-02-05 11:55:38 +01:00
|
|
|
tenantSetting: @tenant_setting,
|
2024-07-12 20:38:46 +02:00
|
|
|
componentRenderedAt: Time.now.to_i,
|
2023-02-05 11:55:38 +01:00
|
|
|
authenticityToken: form_authenticity_token
|
2019-09-02 14:32:57 +02:00
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
%>
|