mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 10:06:03 +01:00
7 lines
146 B
Ruby
7 lines
146 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Admin::DashboardController < ApplicationController
|
|
before_action :authenticate_user!
|
|
|
|
def index; end
|
|
end
|