7f50d33ce3
fine now. git-svn-id: file:///home/svn/framework3/trunk@3972 4d416f70-5f16-0410-b530-b9f4589650da
14 lines
176 B
Ruby
14 lines
176 B
Ruby
class SessionsController < ApplicationController
|
|
layout 'windows'
|
|
|
|
def list
|
|
@all_sessions = Session.get_available()
|
|
end
|
|
|
|
def stop
|
|
end
|
|
|
|
def interact
|
|
end
|
|
end
|