Sha256: 4b5f5e4c9b87f091854e2012a30abd6a73fbf14153de5e7a1aa7be8d3251bcfd
Contents?: true
Size: 698 Bytes
Versions: 18
Compression:
Stored size: 698 Bytes
Contents
module Admin class EffectiveCourseRegistrationsDatatable < Effective::Datatable datatable do col :updated_at, visible: false col :created_at, visible: false col :id, visible: false col :token, visible: false col :created_at, label: 'Created', visible: false col :updated_at, label: 'Updated', visible: false col :submitted_at, label: 'Submitted', visible: false, as: :date col :learndash_course col :owner col :course_registrants, search: :string, visible: false col :orders, label: 'Order' actions_col end collection do scope = EffectiveLearndash.CourseRegistration.all.deep.done end end end
Version data entries
18 entries across 18 versions & 1 rubygems