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
|
2013-01-12 20:54:52 +01:00
|
|
|
@projects = Project.public
|
2013-01-10 19:17:57 +01:00
|
|
|
end
|
|
|
|
end
|