jam-cloud/app/controllers/clients_controller.rb

12 lines
246 B
Ruby

class ClientsController < ApplicationController
# have to be signed in currently to see this screen
before_filter :signed_in_user
def index
# don't use the rails tutorial layout for this page
render :layout => 'client'
end
end