retrospring/app/controllers/settings/data_controller.rb
2022-07-05 20:40:19 +02:00

7 lines
144 B
Ruby

# frozen_string_literal: true
class Settings::DataController < ApplicationController
before_action :authenticate_user!
def index; end
end