dawarich/app/controllers/export_controller.rb

8 lines
145 B
Ruby
Raw Normal View History

2024-03-23 16:46:18 -04:00
class ExportController < ApplicationController
before_action :authenticate_user!
def index
@export = current_user.export_data
end
end