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