defmodule MishkaCms.Runtime do
use Ash.Domain,
otp_app: :mishka_cms
...
oban do
triggers do
trigger :runtime_preload_compiler do
action [:create, :update]
worker_module_name MyObanModuleWorker.RuntimeCompiler
end
end
end
...
end
defmodule MishkaCms.Runtime do
use Ash.Domain,
otp_app: :mishka_cms
...
oban do
triggers do
trigger :runtime_preload_compiler do
action [:create, :update]
worker_module_name MyObanModuleWorker.RuntimeCompiler
end
end
end
...
end