Skip to content

Instantly share code, notes, and snippets.

@radzserg
Created October 10, 2016 13:05
Show Gist options
  • Select an option

  • Save radzserg/f3510f25759ea03dc9b0585220df41a5 to your computer and use it in GitHub Desktop.

Select an option

Save radzserg/f3510f25759ea03dc9b0585220df41a5 to your computer and use it in GitHub Desktop.
defmodule App.Helpers.ViewHelpers do
alias App.Repo
alias App.Image
defmacro __using__(_) do
quote do
def image_url(model, field, options \\ %{}) do
module = model.__struct__
module.get_image_url(model, field, options)
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment