Sha256: 56cecc9d4b42ffd773564442cefbafb48e8586acbdece93b6532583ba5857aeb

Contents?: true

Size: 152 Bytes

Versions: 2

Compression:

Stored size: 152 Bytes

Contents

class ApplicationController < ActionController::Base
  def logged_in?
    true
  end
  
  def current_user
    @current_user ||= User.find(1)
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
my_annotations-0.6.0 test/app_root/app/controllers/application_controller.rb
my_annotations-0.5.1 test/app_root/app/controllers/application_controller.rb