thingspeak/app/controllers/pipes_controller.rb

18 lines
241 B
Ruby
Raw Normal View History

class PipesController < ApplicationController
2014-03-22 18:21:45 +01:00
before_filter :require_admin
def index
@pipes = Pipe.paginate :page => params[:page], :order => 'created_at DESC'
end
def new
@pipe = Pipe.new
end
def create
end
end
2014-03-22 18:21:45 +01:00