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