Sha256: 06d0521d5f7e2d5f025c53ce3cb7f9731288e1c7aecdb52abae7f2320d7e78d4
Contents?: true
Size: 337 Bytes
Versions: 17
Compression:
Stored size: 337 Bytes
Contents
# encoding: utf-8 class JoiningTablesController < ApplicationController def index @tasks_grid = initialize_grid(Task, # You can omit includes if they are all mentioned in :assoc in the view # includes: [:priority, :status, {project: :customer}], conditions: { archived: false }, order: 'id' ) end end
Version data entries
17 entries across 17 versions & 2 rubygems