dawarich/app/controllers/export_controller.rb
2024-03-23 21:46:18 +01:00

7 lines
145 B
Ruby

class ExportController < ApplicationController
before_action :authenticate_user!
def index
@export = current_user.export_data
end
end