gitlabhq/app/controllers/public/projects_controller.rb

12 lines
258 B
Ruby
Raw Normal View History

2013-01-10 19:17:57 +01:00
class Public::ProjectsController < ApplicationController
skip_before_filter :authenticate_user!,
:reject_blocked, :set_current_user_for_observers,
:add_abilities
layout 'public'
def index
@projects = Project.where(public: true)
end
end