First stab at About page

This commit is contained in:
Robin Ward
2014-08-11 16:59:00 -04:00
parent fdea828ed4
commit c103398e9a
11 changed files with 165 additions and 0 deletions

View File

@ -0,0 +1,8 @@
class AboutController < ApplicationController
skip_before_filter :check_xhr, only: [:show]
def index
@about = About.new
render_serialized(@about, AboutSerializer)
end
end