Files
astuto/app/views/boards/show.html.erb

12 lines
267 B
Plaintext
Raw Normal View History

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?,
isPowerUser: user_signed_in? ? current_user.moderator? : false,
tenantSetting: @tenant_setting,
authenticityToken: form_authenticity_token
2019-09-02 14:32:57 +02:00
}
)
%>