14 lines
146 B
Ruby
14 lines
146 B
Ruby
class Testing < Application
|
|
|
|
def show_form
|
|
render
|
|
end
|
|
|
|
def submit_form
|
|
end
|
|
|
|
def redirect_to_root
|
|
redirect "/"
|
|
end
|
|
|
|
end |