thingspeak/app/controllers/apps_controller.rb
2014-02-17 12:05:39 -05:00

10 lines
256 B
Ruby

class AppsController < ApplicationController
def index
@menu = 'apps'
@title = 'Internet of Things Apps' if current_user.nil?
# @twitters = TwitterAccount.find(:all, :conditions => { :user_id => current_user.id }) if current_user
end
end