Sha256: 2e40a5ed60dd57c0062d3ad3dbddf4d49d868ccd91406c47c35bd66d2b73521a
Contents?: true
Size: 534 Bytes
Versions: 13
Compression:
Stored size: 534 Bytes
Contents
class Admin::EffectivePollQuestionsDatatable < Effective::Datatable datatable do reorder :position col :updated_at, visible: false col :created_at, visible: false col :id, visible: false col :poll col :position do |poll_question| poll_question.position.to_i + 1 end col :title col :body, as: :text col :required col :category, label: 'Type' col :poll_question_options, label: 'Options' actions_col end collection do Effective::PollQuestion.all.deep end end
Version data entries
13 entries across 13 versions & 1 rubygems