View Source Glific.Tags.ContactTag (Glific v5.1.6)

A pipe for managing the contact tags

Link to this section Summary

Functions

Standard changeset pattern we use for all data types

Link to this section Types

@type t() :: %Glific.Tags.ContactTag{
  __meta__: Ecto.Schema.Metadata.t(),
  contact: Glific.Contacts.Contact.t() | Ecto.Association.NotLoaded.t() | nil,
  contact_id: term(),
  id: non_neg_integer() | nil,
  organization:
    Glific.Partners.Organization.t() | Ecto.Association.NotLoaded.t() | nil,
  organization_id: non_neg_integer() | nil,
  tag: Glific.Tags.Tag.t() | Ecto.Association.NotLoaded.t() | nil,
  tag_id: term(),
  value: String.t() | nil
}

Link to this section Functions

Link to this function

changeset(contact, attrs)

View Source
@spec changeset(t(), map()) :: Ecto.Changeset.t()

Standard changeset pattern we use for all data types