10 lines
149 B
Ruby
10 lines
149 B
Ruby
class AppsController < ApplicationController
|
|
|
|
def index
|
|
@menu = 'apps'
|
|
@title = 'Internet of Things Apps' if current_user.nil?
|
|
end
|
|
|
|
end
|
|
|