Commit 855aeb4f
Changed files (1)
app
controllers
app/controllers/home_controller.rb
@@ -1,5 +1,5 @@
class HomeController < ApplicationController
def index
- @creations = Creation.all
+ @creations = Creation.where(:is_restricted => false)
end
end