c8fb238302
git-svn-id: file:///home/svn/framework3/trunk@3980 4d416f70-5f16-0410-b530-b9f4589650da
14 lines
167 B
Ruby
14 lines
167 B
Ruby
class SessionsController < ApplicationController
|
|
layout 'windows'
|
|
|
|
def list
|
|
@sessions = Session.find_all()
|
|
end
|
|
|
|
def stop
|
|
end
|
|
|
|
def interact
|
|
end
|
|
end
|