simple_crm/app/controllers/site_controller.rb

15 lines
160 B
Ruby

class SiteController < ApplicationController
def index
@pages = PublishedPage.all
@adm = Admin.all
end
def show
end
def preview
end
end