akkounts/app/views/shared/_sidenav_settings.html.erb
Sebastian Kippe ed886d8182
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
Introduce sidebar nav components, settings nav
2022-02-24 18:56:07 -06:00

11 lines
344 B
Plaintext

<%= render SidenavLinkComponent.new(
name: "Account", path: "#", icon: "settings", disabled: true
) %>
<%= render SidenavLinkComponent.new(
name: "Password", path: security_path, icon: "key",
active: current_page?(security_path)
) %>
<%= render SidenavLinkComponent.new(
name: "Security", path: "#", icon: "shield", disabled: true
) %>