6 lines
115 B
Ruby
6 lines
115 B
Ruby
|
class Admin::DashboardController < ApplicationController
|
||
|
before_action :authenticate_user!
|
||
|
|
||
|
def index; end
|
||
|
end
|