Class: Lit::Base

Inherits:
ActiveRecord::Base
  • Object
show all
Defined in:
app/models/lit/base.rb

Direct Known Subclasses

Locale, Localization, LocalizationKey

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#retried_createdObject

Returns the value of attribute retried_created.



7
8
9
# File 'app/models/lit/base.rb', line 7

def retried_created
  @retried_created
end

#retried_updatedObject

Returns the value of attribute retried_updated.



7
8
9
# File 'app/models/lit/base.rb', line 7

def retried_updated
  @retried_updated
end

Instance Method Details

#mark_for_retry_on_createObject



9
10
11
# File 'app/models/lit/base.rb', line 9

def mark_for_retry_on_create
  @will_retry_create = true
end

#mark_for_retry_on_updateObject



13
14
15
# File 'app/models/lit/base.rb', line 13

def mark_for_retry_on_update
  @will_retry_update = true
end