eshop/app/controllers/welcome_controller.rb

11 lines
236 B
Ruby

# encoding: UTF-8
class WelcomeController < ApplicationController
def index
@info = Information.where("type_of = 0").first
end
def show_information
@information = Information.where("id = ?",params[:id]).first
end
end