Michael St Clair
Michael St Clair
Not sure if client_id was intentionally left in the auth code request alongside the Basic auth, but it does break with QuickBooks, doesn't appear to affect any other of the...
`change manage_relationship(:budget, type: :replace)` This implies to me that it is going to delete and recreate the relationship instead of just linking to the existing one, may be good to...
Right now you have to setup multiple pieces in the actions and graphql block. We think we can simplify this and bring all the settings into ash core. These are...
Recreating the unique_index should happen after the rename action or do both index actions after the rename ``` def down do drop_if_exists unique_index(:access__teams, [:license_key_id], name: "access__teams_license_key_id_index" ) create unique_index(:access__teams, [:idp_entity_id],...
I've seen various errors from time outs to :noproc after a couple of days of my app running. Here is the latest error I received. Let me know what else...
I'm getting this warning after each test which is making a mess of the test logs. It only happens when I run mix coveralls, not mix test ``` WARNING: Deleting...
I think it would be ideal to use .exs files instead of .json for configuration as it is the common format for elixir (credo, formatter, etc.). If you are willing...
It would be nice to have a namespaced resource (instead of entire cluster) for image policies. For example I want to say a images can only be verified if in...
We have a test case for GRPC that calls Mimic.allow across many modules, some of which don't also call Mimic.expect in every test case causing the function to raise. Is...
Similar to Hammox it would be nice to allow processes to use a mock before expectations have been defined. In this case I have a genserver that takes a opt...