code-corps/code-corps-api

View on GitHub
lib/code_corps/model/github_issue.ex

Summary

Maintainability
Test Coverage
defmodule CodeCorps.GithubIssue do
  use Ecto.Schema
  import Ecto.Changeset

  @type t :: %__MODULE__{}

  schema "github_issues" do
    field :body, :string
    field :closed_at, :utc_datetime
    field :comments_url, :string
    field :events_url, :string
    field :github_created_at, :utc_datetime
    field :github_id, :integer
    field :github_updated_at, :utc_datetime
    field :html_url, :string
    field :labels_url, :string
    field :locked, :boolean
    field :number, :integer
    field :state, :string
    field :title, :string
    field :url, :string

    belongs_to :github_pull_request, CodeCorps.GithubPullRequest
    belongs_to :github_repo, CodeCorps.GithubRepo
    belongs_to :github_user, CodeCorps.GithubUser

    has_many :github_comments, CodeCorps.GithubComment
    has_many :github_issue_assignees, CodeCorps.GithubIssueAssignee
    has_one :task, CodeCorps.Task

    timestamps()
  end

  @doc false
  def changeset(struct, params) do
    struct
    |> cast(params, [:body, :closed_at, :comments_url, :events_url, :github_created_at, :github_id, :github_updated_at, :html_url, :labels_url, :locked, :number, :state, :title, :url])
    |> validate_required([:comments_url, :events_url, :github_created_at, :github_id, :github_updated_at, :html_url, :labels_url, :locked, :number, :state, :title, :url])
    |> unique_constraint(:github_id)
  end
end