mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
14 lines
496 B
Plaintext
14 lines
496 B
Plaintext
<% if user_signed_in? %>
|
|
<%
|
|
quick_actions = @activated_content_types.map do |content_type_name|
|
|
content_class = content_type_name.constantize
|
|
{
|
|
name: "Create new #{content_type_name}",
|
|
icon: content_class.icon,
|
|
color: content_class.color,
|
|
route: main_app.new_polymorphic_path(content_class)
|
|
}
|
|
end
|
|
%>
|
|
<%= react_component("QuickPageCreatesFab", { actions: quick_actions }) unless defined?(@show_footer) && !@show_footer %>
|
|
<% end %> |