Jeff Deville
Jeff Deville
@vishnevskiy Can you please push an updated version to package control to fix the mouse issue?
I've got the same problem with another project. The problem is that the config.exs is parsed before anything else is compiled. So your first effort: ``` email_reset_password_template: App.EmailTemplate.reset, ``` fails...
ping... Any reason why this hasn't been merged?
To get this to work, I had to include /v1 in the kane endpoint. Here's my config: ``` config :goth, json: {:system, "GCP_CREDENTIALS"} config :kane, :endpoint, "http://#{System.get_env("PUBSUB_EMULATOR_HOST")}/v1" ``` (For anyone...
+1 for this. I keep having to go back to the default theme instead of my dark ones, beacuse the dark blue isn't readable.
FYI @brandonparsons, Ecto 2.1 will allow you to pass the prefix as a keyword parameter to Repo actions. If you're using anything prior to that, you'll have to alter the...
I'm sorry @benrom - I haven't tried it. Perhaps the overrided keyword can help? https://hexdocs.pm/mix/Mix.Tasks.Deps.html
https://github.com/promptworks/tenantex/pull/16 might help I apologize that the code isn't merged and cleaned up yet. I've got a lot going on right now, but you can take a look at the...
Sure: **Model** ```elixir defmodule NHWeb.Customer do use NHWeb.Web, :model import Ecto.Query alias NHWeb.{Licensee,License,Company,Repo} schema "customers" do field :name, :string field :about, :string field :website, :string field :facebook, :string field :twitter,...
In the meantime, for those w/ version issues with Poison: {:mailgun, github: "chrismccord/mailgun", branch: "master", override: true}