9 lines
129 B
Ruby
9 lines
129 B
Ruby
class StaticController < ApplicationController
|
|
def terms_of_service
|
|
render :layout => "blank"
|
|
end
|
|
|
|
def error
|
|
end
|
|
end
|