Skip to content

Instantly share code, notes, and snippets.

@Hajto
Created December 8, 2016 17:17
Show Gist options
  • Save Hajto/3285989ec744107d1e4661b3b6636d4e to your computer and use it in GitHub Desktop.
Save Hajto/3285989ec744107d1e4661b3b6636d4e to your computer and use it in GitHub Desktop.
defmodule Kpsz.Data.Event do
alias Kpsz.Event
alias Kpsz.Repo
def create(event, repo \\ Repo) do
changeset = Event.changeset(%Kpsz.Event{}, event)
repo.insert(changeset)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment