12 lines
408 B
Plaintext
12 lines
408 B
Plaintext
<%= render SidenavLinkComponent.new(
|
|
name: "Profile", path: settings_profile_path, icon: "user",
|
|
active: current_page?(settings_profile_path)
|
|
) %>
|
|
<%= render SidenavLinkComponent.new(
|
|
name: "Security", path: settings_security_path, icon: "key",
|
|
active: current_page?(settings_security_path)
|
|
) %>
|
|
<%= render SidenavLinkComponent.new(
|
|
name: "Security", path: "#", icon: "shield", disabled: true
|
|
) %>
|