10 lines
134 B
Ruby
Executable File
10 lines
134 B
Ruby
Executable File
class DashboardController < ApplicationController
|
|
|
|
skip_before_filter :has_info
|
|
|
|
def home
|
|
@user = current_user
|
|
end
|
|
|
|
end
|