29 lines
373 B
Ruby
29 lines
373 B
Ruby
class CorpController < ApplicationController
|
|
|
|
|
|
# not implemented--jam-corp project contains this code
|
|
|
|
def contact
|
|
render nothing: true
|
|
end
|
|
|
|
def terms
|
|
render nothing: true
|
|
end
|
|
|
|
def privacy
|
|
render nothing: true
|
|
end
|
|
|
|
def news
|
|
render nothing: true
|
|
end
|
|
|
|
def about
|
|
render nothing: true
|
|
end
|
|
|
|
def help
|
|
render nothing: true
|
|
end
|
|
end |