14 lines
204 B
Ruby
14 lines
204 B
Ruby
class PackagesController < ApplicationController
|
|
def index
|
|
@packages = Package.order('name').first(20)
|
|
end
|
|
|
|
def with_screenshots
|
|
end
|
|
|
|
def without_screenshots
|
|
end
|
|
|
|
def moderate
|
|
end
|
|
end
|