29 lines
1.2 KiB
Plaintext
29 lines
1.2 KiB
Plaintext
%nav
|
|
%ul
|
|
%li= link_to 'Home', root_path, class: "home-link", data: { turbo: false }
|
|
-# - if current_user.signed_in?
|
|
-# %li= link_to 'My Tendy Zone', root_path, class: "home-link", data: { turbo: false }
|
|
-# %li= link_to 'Public', '/public', data: { turbo: false }
|
|
-# %li= link_to 'Tokens', tokens_path
|
|
-# %li= link_to 'Profiles', profiles_path
|
|
-# %li= link_to 'Projects', projects_path
|
|
-# %li= link_to 'MetaPurse', metapurses_path
|
|
-# - if policy(:canister).index?
|
|
-# %li= link_to 'Canisters', canisters_path
|
|
-# %li= link_to 'Doodads', doodads_path, data: { turbo: false }
|
|
-# - if policy(:bot).index?
|
|
-# %li= link_to 'Bots', bots_path
|
|
- if policy(:table).index?
|
|
%li= link_to 'Tables', tables_path
|
|
-# - if policy(:room).index?
|
|
-# %li= link_to 'Chat', rooms_path
|
|
- if current_user.signed_in?
|
|
- if current_user.admin?
|
|
%li= link_to 'Users', users_path
|
|
- if current_user.signed_in?
|
|
%li= link_to 'My account', edit_user_registration_path
|
|
%li= link_to 'Sign out', destroy_user_session_path, :method=>'delete'
|
|
- else
|
|
%li= link_to 'Sign in', new_user_session_path
|
|
%li= link_to 'Sign up', new_user_registration_path
|