mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 09:56:03 +01:00
8 lines
144 B
Ruby
8 lines
144 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class Settings::DataController < ApplicationController
|
||
|
before_action :authenticate_user!
|
||
|
|
||
|
def index; end
|
||
|
end
|