Silas J. Matson
Silas J. Matson
@yulolimum I'll take a look.
@codeithuman Jumping on to what @ryanlntn said, I think I18n is the route we should go. [linguist](https://github.com/chrismccord/linguist) is also an option if we want something a bit simpler than gettext.
Yeah, linguist is more of a key-value store than a full-on I18n solution.
I vote for something like `HealthMonitor.PerformanceReporting` and `HealthMonitor.ErrorReporting` And the cli args could be like so: * `--error-reporting ` -- Generates `HealthMonitor.ErrorReporting` along with the appropriate `option` configuration (valid options:...
One solution would be to set the 'Cache-Control' headers here: https://github.com/infinitered/thesis-phoenix/blob/master/lib/thesis/api_controller.ex#L57-L61
@jamonholmgren Note that this includes a new migration -- does hex have a way of doing a post-install/update message so we can alert the user to re-run `mix thesis.install`?
@yulolimum I have it mostly fixed locally, but I'm running into various issues with the tests. I've been attempting to get @jamonholmgren on a pairing session, but he's a busy...
Oops, closed the wrong issue.
For backwards compatibility, we can define a default, overridable `after_validate/3` function that calls `after_validate/2` in the `__using__/1` macro. ```elixir @impl Authority.Authentication def after_validate(_credential, user, purpose), do: after_validate(user, purpose) ```
@joshuayoes Would appreciate if you could clone my test repo and reproduce the issue yourself.