10 lines
120 B
Ruby
10 lines
120 B
Ruby
|
class WebratController < ApplicationController
|
||
|
|
||
|
def form
|
||
|
end
|
||
|
|
||
|
def submit
|
||
|
render :text => "OK"
|
||
|
end
|
||
|
|
||
|
end
|