Packages controller added
This commit is contained in:
parent
f28c637d10
commit
c2a695aec0
15 changed files with 110 additions and 1 deletions
14
app/controllers/packages_controller.rb
Normal file
14
app/controllers/packages_controller.rb
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
class PackagesController < ApplicationController
|
||||
def index
|
||||
@packages = Package.order('name').first(20)
|
||||
end
|
||||
|
||||
def with_screenshots
|
||||
end
|
||||
|
||||
def without_screenshots
|
||||
end
|
||||
|
||||
def moderate
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue