Module: Datagrid::ActiveModel::InstanceMethods

Defined in:
lib/datagrid/active_model.rb

Overview

ClassMethods

Instance Method Summary collapse

Instance Method Details

#param_keyObject



34
35
36
# File 'lib/datagrid/active_model.rb', line 34

def param_key
  param_name
end

#param_nameObject



30
31
32
# File 'lib/datagrid/active_model.rb', line 30

def param_name
  self.class.param_name
end

#persisted?Boolean

Returns:

  • (Boolean)


42
43
44
# File 'lib/datagrid/active_model.rb', line 42

def persisted?
  false
end

#to_keyObject



38
39
40
# File 'lib/datagrid/active_model.rb', line 38

def to_key
  [self.class.param_name]
end

#to_modelObject



46
47
48
# File 'lib/datagrid/active_model.rb', line 46

def to_model
  self
end

#to_paramObject



50
51
52
# File 'lib/datagrid/active_model.rb', line 50

def to_param
  self.param_name
end