toshogakari/eLib

View on GitHub
app/controllers/landing_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class LandingController < ApplicationController
  layout 'landing'

  # GET /
  def index
    @books = Book.limit(60)
    @categories = Category.all
    @user = { name: 'test' }
  end

end