Class: ResourceEvent

Inherits:
ApplicationRecord show all
Includes:
Gitlab::Utils::StrongMemoize, Importable, IssueResourceEvent, WorkItemResourceEvent
Defined in:
app/models/resource_event.rb

Constant Summary

Constants inherited from ApplicationRecord

ApplicationRecord::MAX_PLUCK

Constants included from ResetOnUnionError

ResetOnUnionError::MAX_RESET_PERIOD

Instance Attribute Summary

Attributes included from Importable

#imported, #importing

Instance Method Summary collapse

Methods included from WorkItemResourceEvent

#synthetic_note_class, #trigger_note_subscription_create, #work_item_synthetic_system_note

Methods inherited from ApplicationRecord

cached_column_list, #create_or_load_association, declarative_enum, default_select_columns, id_in, id_not_in, iid_in, pluck_primary_key, primary_key_in, #readable_by?, safe_ensure_unique, safe_find_or_create_by, safe_find_or_create_by!, #to_ability_name, underscore, where_exists, where_not_exists, with_fast_read_statement_timeout, without_order

Methods included from SensitiveSerializableHash

#serializable_hash

Instance Method Details

#discussion_idObject



17
18
19
20
21
# File 'app/models/resource_event.rb', line 17

def discussion_id
  strong_memoize(:discussion_id) do
    Digest::SHA1.hexdigest(discussion_id_key.join("-"))
  end
end

#issuableObject

Raises:

  • (NoMethodError)


23
24
25
# File 'app/models/resource_event.rb', line 23

def issuable
  raise NoMethodError, 'must implement `issuable` method'
end