socialforge/app/controllers/enterprises_controller.rb

7 lines
177 B
Ruby

class EnterprisesController < ApplicationController
layout 'project_base'
def index
@enterprises = Project.find_by_sql("select enterprise_name from projects")
end
end