mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
16 lines
215 B
Ruby
16 lines
215 B
Ruby
class DataController < ApplicationController
|
|
before_action :set_sidenav_expansion
|
|
|
|
def index
|
|
end
|
|
|
|
def recyclebin
|
|
end
|
|
|
|
private
|
|
|
|
def set_sidenav_expansion
|
|
@sidenav_expansion = 'my account'
|
|
end
|
|
end
|