Sha256: 6afad2e9b76e9c085c0ba343ee5b35f5a4be1ad6dff27b707f46ba685d0bcfac

Contents?: true

Size: 220 Bytes

Versions: 5

Compression:

Stored size: 220 Bytes

Contents

module Blacksand
  class Dashboard::PrototypesController < Dashboard::BaseController

    def index
      @prototypes = Prototype.all
    end

    def show
      @prototype = Prototype.find params[:id]
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
blacksand-2.5.0 app/controllers/blacksand/dashboard/prototypes_controller.rb
blacksand-2.4.1 app/controllers/blacksand/dashboard/prototypes_controller.rb
blacksand-2.4.0 app/controllers/blacksand/dashboard/prototypes_controller.rb
blacksand-2.3.0 app/controllers/blacksand/dashboard/prototypes_controller.rb
blacksand-2.2.2.1 app/controllers/blacksand/dashboard/prototypes_controller.rb