11 lines
198 B
Ruby
11 lines
198 B
Ruby
class HomeController < ApplicationController
|
|
skip_before_filter :verify_authenticity_token
|
|
|
|
def index
|
|
redirect_to new_member_session_path
|
|
end
|
|
def dashboard
|
|
@users=User.all
|
|
end
|
|
end
|