diff --git a/.build b/.build index 65661ddc88..24cf6acbbb 100644 --- a/.build +++ b/.build @@ -239,8 +239,8 @@ dist/merriweather-latin-ext-300-normal-K6L27CZ5.woff2 dist/merriweather-vietnamese-300-italic-EHHNZPUO.woff2 dist/merriweather-vietnamese-300-normal-U376L4Z4.woff2 dist/remixicon-NKANDIL5.woff2 -dist/search_data-CB06AE0B.js -dist/sidebar_items-8F7225A0.js +dist/search_data-9366175C.js +dist/sidebar_items-94DECE9C.js index.html provisioning.html readme.html diff --git a/404.html b/404.html index f0797c4ebb..85f72e925d 100644 --- a/404.html +++ b/404.html @@ -5,15 +5,15 @@ - + -
iex> apply_user_email(user, "valid password", %{email: ...})
-{:ok, %User{}}role: :superuser
-iex> apply_user_email(user, "invalid password", %{email: ...})
-{:error, %Ecto.Changeset{}}
+iex> apply_user_email(user, "valid password", %{email: ...})
+{:ok, %User{}}role: :superuser
+iex> apply_user_email(user, "invalid password", %{email: ...})
+{:error, %Ecto.Changeset{}}
iex> change_scheduled_deletion(user)
-%Ecto.Changeset{data: %User{}}
+iex> change_scheduled_deletion(user)
+%Ecto.Changeset{data: %User{}}
iex> change_superuser_registration(user)
-%Ecto.Changeset{data: %User{}}
+iex> change_superuser_registration(user)
+%Ecto.Changeset{data: %User{}}
iex> change_user_email(user)
-%Ecto.Changeset{data: %User{}}
+iex> change_user_email(user)
+%Ecto.Changeset{data: %User{}}
iex> change_user_password(user)
-%Ecto.Changeset{data: %User{}}
+iex> change_user_password(user)
+%Ecto.Changeset{data: %User{}}
iex> change_user_registration(user)
-%Ecto.Changeset{data: %User{}}
+iex> change_user_registration(user)
+%Ecto.Changeset{data: %User{}}
iex> delete_token(token)
-{:ok, %UserToken{}}
+iex> delete_token(token)
+{:ok, %UserToken{}}
-iex> delete_token(token)
-{:error, %Ecto.Changeset{}}
+iex> delete_token(token)
+{:error, %Ecto.Changeset{}}
iex> delete_user(user)
-{:ok, %User{}}
+iex> delete_user(user)
+{:ok, %User{}}
-iex> delete_user(user)
-{:error, %Ecto.Changeset{}}
+iex> delete_user(user)
+{:error, %Ecto.Changeset{}}
iex> deliver_update_email_instructions(user, current_email, &Routes.user_update_email_url(conn, :edit, &1))
-{:ok, %{to: ..., body: ...}}
+iex> deliver_update_email_instructions(user, current_email, &Routes.user_update_email_url(conn, :edit, &1))
+{:ok, %{to: ..., body: ...}}
iex> deliver_user_confirmation_instructions(user, &Routes.user_confirmation_url(conn, :edit, &1))
-{:ok, %{to: ..., body: ...}}
+iex> deliver_user_confirmation_instructions(user, &Routes.user_confirmation_url(conn, :edit, &1))
+{:ok, %{to: ..., body: ...}}
-iex> deliver_user_confirmation_instructions(confirmed_user, &Routes.user_confirmation_url(conn, :edit, &1))
-{:error, :already_confirmed}
+iex> deliver_user_confirmation_instructions(confirmed_user, &Routes.user_confirmation_url(conn, :edit, &1))
+{:error, :already_confirmed}
iex> deliver_user_reset_password_instructions(user, &Routes.user_reset_password_url(conn, :edit, &1))
-{:ok, %{to: ..., body: ...}}
+iex> deliver_user_reset_password_instructions(user, &Routes.user_reset_password_url(conn, :edit, &1))
+{:ok, %{to: ..., body: ...}}
iex> get_token!(123)
-%UserToken{}
+iex> get_token!(123)
+%UserToken{}
-iex> get_token!(456)
+iex> get_token!(456)
** (Ecto.NoResultsError)
iex> get_user!(123)
-%User{}
+iex> get_user!(123)
+%User{}
-iex> get_user!(456)
+iex> get_user!(456)
** (Ecto.NoResultsError)
@@ -1501,10 +1501,10 @@ get_user_by_email(email)
Examples
-iex> get_user_by_email("foo@example.com")
-%User{}
+iex> get_user_by_email("foo@example.com")
+%User{}
-iex> get_user_by_email("unknown@example.com")
+iex> get_user_by_email("unknown@example.com")
nil
@@ -1533,10 +1533,10 @@ get_user_by_email_and_password(email, passw
Examples
-iex> get_user_by_email_and_password("foo@example.com", "correct_password")
-%User{}
+iex> get_user_by_email_and_password("foo@example.com", "correct_password")
+%User{}
-iex> get_user_by_email_and_password("foo@example.com", "invalid_password")
+iex> get_user_by_email_and_password("foo@example.com", "invalid_password")
nil
@@ -1565,10 +1565,10 @@ get_user_by_reset_password_token(token)
Examples
-iex> get_user_by_reset_password_token("validtoken")
-%User{}
+iex> get_user_by_reset_password_token("validtoken")
+%User{}
-iex> get_user_by_reset_password_token("invalidtoken")
+iex> get_user_by_reset_password_token("invalidtoken")
nil
@@ -1765,8 +1765,8 @@ list_users()
Examples
-iex> list_users()
-[%User{}, ...]
+iex> list_users()
+[%User{}, ...]
@@ -1873,11 +1873,11 @@ register_superuser(attrs)
Examples
-iex> register_superuser(%{field: value})
-{:ok, %User{}}
+iex> register_superuser(%{field: value})
+{:ok, %User{}}
-iex> register_superuser(%{field: bad_value})
-{:error, %Ecto.Changeset{}}
+iex> register_superuser(%{field: bad_value})
+{:error, %Ecto.Changeset{}}
@@ -1915,11 +1915,11 @@ register_user(attrs)
Examples
-iex> register_user(%{field: value})
-{:ok, %User{}}
+iex> register_user(%{field: value})
+{:ok, %User{}}
-iex> register_user(%{field: bad_value})
-{:error, %Ecto.Changeset{}}
+iex> register_user(%{field: bad_value})
+{:error, %Ecto.Changeset{}}
@@ -1947,11 +1947,11 @@ reset_user_password(user, attrs)
Examples
-iex> reset_user_password(user, %{password: "new long password", password_confirmation: "new long password"})
-{:ok, %User{}}
+iex> reset_user_password(user, %{password: "new long password", password_confirmation: "new long password"})
+{:ok, %User{}}
-iex> reset_user_password(user, %{password: "valid", password_confirmation: "not the same"})
-{:error, %Ecto.Changeset{}}
+iex> reset_user_password(user, %{password: "valid", password_confirmation: "not the same"})
+{:error, %Ecto.Changeset{}}
@@ -2073,11 +2073,11 @@ update_user_password(user, password, attrs)
Examples
-iex> update_user_password(user, "valid password", %{password: ...})
-{:ok, %User{}}
+iex> update_user_password(user, "valid password", %{password: ...})
+{:ok, %User{}}
-iex> update_user_password(user, "invalid password", %{password: ...})
-{:error, %Ecto.Changeset{}}
+iex> update_user_password(user, "invalid password", %{password: ...})
+{:error, %Ecto.Changeset{}}
diff --git a/Lightning.AdaptorRegistry.Npm.html b/Lightning.AdaptorRegistry.Npm.html
index e532db7017..7cd0c86c64 100644
--- a/Lightning.AdaptorRegistry.Npm.html
+++ b/Lightning.AdaptorRegistry.Npm.html
@@ -5,15 +5,15 @@
-
+
- Lightning.AdaptorRegistry.Npm — Lightning v0.10.5
+ Lightning.AdaptorRegistry.Npm — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.AdaptorRegistry.Npm
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
@@ -1679,14 +1679,14 @@ request(request)
Examples
-
request = %HTTPoison.Request{
+request = %HTTPoison.Request{
method: :post,
url: "https://my.website.com",
body: "{\"foo\": 3}",
- headers: [{"Accept", "application/json"}]
-}
+ headers: [{"Accept", "application/json"}]
+}
-request(request)
+request(request)
@@ -1744,7 +1744,7 @@ request(method, url, body \\ "",
Examples
-request(:post, "https://my.website.com", "{\"foo\": 3}", [{"Accept", "application/json"}])
+request(:post, "https://my.website.com", "{\"foo\": 3}", [{"Accept", "application/json"}])
diff --git a/Lightning.AdaptorRegistry.html b/Lightning.AdaptorRegistry.html
index 3d90c9cfc1..40a29790fc 100644
--- a/Lightning.AdaptorRegistry.html
+++ b/Lightning.AdaptorRegistry.html
@@ -5,15 +5,15 @@
-
+
- Lightning.AdaptorRegistry — Lightning v0.10.5
+ Lightning.AdaptorRegistry — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.AdaptorRegistry
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
@@ -140,9 +140,9 @@
Registry process to query and maintain a list of adaptors available for
writing jobs.
Currently it queries NPM for all modules in the @openfn
organization and
filters out modules that are known not to be adaptors.
Usage
# Starting the process
-AdaptorRegistry.start_link()
+AdaptorRegistry.start_link()
# Getting a list of all adaptors
-Lightning.AdaptorRegistry.AdaptorRegistry.all()
Caching
By default the results are cached to disk, and will be reused every start.
In order to disable or configure caching pass see: start_link/1
.
The process uses :continue
to return before the adaptors have been queried.
+
Lightning.AdaptorRegistry.AdaptorRegistry.all()
Caching
By default the results are cached to disk, and will be reused every start.
In order to disable or configure caching pass see: start_link/1
.
The process uses :continue
to return before the adaptors have been queried.
This does mean that the first call to the process will be delayed until
the handle_continue/2
has finished.
Timeouts
There is a 'general' timeout of 30s, this is used for GenServer calls like
all/1
and also internally when the modules are being queried. NPM can
@@ -432,10 +432,10 @@
resolve_package_name(package_name)
-Destructures an NPM style package name into module name and version.
Example
iex> resolve_package_name("@openfn/language-salesforce@1.2.3")
-{ "@openfn/language-salesforce", "1.2.3" }
-iex> resolve_package_name("@openfn/language-salesforce")
-{ "@openfn/language-salesforce", nil }
+Destructures an NPM style package name into module name and version.
Example
iex> resolve_package_name("@openfn/language-salesforce@1.2.3")
+{ "@openfn/language-salesforce", "1.2.3" }
+iex> resolve_package_name("@openfn/language-salesforce")
+{ "@openfn/language-salesforce", nil }
diff --git a/Lightning.AdaptorService.html b/Lightning.AdaptorService.html
index 5d4ac3ee56..35baa5a099 100644
--- a/Lightning.AdaptorService.html
+++ b/Lightning.AdaptorService.html
@@ -5,15 +5,15 @@
-
+
- Lightning.AdaptorService — Lightning v0.10.5
+ Lightning.AdaptorService — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.AdaptorService
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Attempt.html b/Lightning.Attempt.html
index 0958d7f0e9..bb26850b25 100644
--- a/Lightning.Attempt.html
+++ b/Lightning.Attempt.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Attempt — Lightning v0.10.5
+ Lightning.Attempt — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Attempt
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.AttemptRun.html b/Lightning.AttemptRun.html
index 7a718c14dd..c412773f65 100644
--- a/Lightning.AttemptRun.html
+++ b/Lightning.AttemptRun.html
@@ -5,15 +5,15 @@
-
+
- Lightning.AttemptRun — Lightning v0.10.5
+ Lightning.AttemptRun — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.AttemptRun
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Attempts.Adaptor.html b/Lightning.Attempts.Adaptor.html
index de665e391c..e54b076ea0 100644
--- a/Lightning.Attempts.Adaptor.html
+++ b/Lightning.Attempts.Adaptor.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Attempts.Adaptor — Lightning v0.10.5
+ Lightning.Attempts.Adaptor — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Attempts.Adaptor behaviour
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Attempts.Events.html b/Lightning.Attempts.Events.html
index 8340410db4..64856d0640 100644
--- a/Lightning.Attempts.Events.html
+++ b/Lightning.Attempts.Events.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Attempts.Events — Lightning v0.10.5
+ Lightning.Attempts.Events — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Attempts.Events
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Attempts.Handlers.CompleteRun.html b/Lightning.Attempts.Handlers.CompleteRun.html
index 2058216400..f73555212c 100644
--- a/Lightning.Attempts.Handlers.CompleteRun.html
+++ b/Lightning.Attempts.Handlers.CompleteRun.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Attempts.Handlers.CompleteRun — Lightning v0.10.5
+ Lightning.Attempts.Handlers.CompleteRun — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Attempts.Handlers.CompleteRun
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Attempts.Handlers.StartRun.html b/Lightning.Attempts.Handlers.StartRun.html
index 605155e162..8693f59bfc 100644
--- a/Lightning.Attempts.Handlers.StartRun.html
+++ b/Lightning.Attempts.Handlers.StartRun.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Attempts.Handlers.StartRun — Lightning v0.10.5
+ Lightning.Attempts.Handlers.StartRun — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Attempts.Handlers.StartRun
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Attempts.Handlers.html b/Lightning.Attempts.Handlers.html
index 68d4322b73..3667289862 100644
--- a/Lightning.Attempts.Handlers.html
+++ b/Lightning.Attempts.Handlers.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Attempts.Handlers — Lightning v0.10.5
+ Lightning.Attempts.Handlers — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Attempts.Handlers
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Attempts.Query.html b/Lightning.Attempts.Query.html
index 921efc3814..582303d609 100644
--- a/Lightning.Attempts.Query.html
+++ b/Lightning.Attempts.Query.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Attempts.Query — Lightning v0.10.5
+ Lightning.Attempts.Query — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Attempts.Query
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Attempts.Queue.html b/Lightning.Attempts.Queue.html
index 7971aa87d7..957cf9c998 100644
--- a/Lightning.Attempts.Queue.html
+++ b/Lightning.Attempts.Queue.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Attempts.Queue — Lightning v0.10.5
+ Lightning.Attempts.Queue — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Attempts.Queue
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Attempts.html b/Lightning.Attempts.html
index 6962096124..c716776cc8 100644
--- a/Lightning.Attempts.html
+++ b/Lightning.Attempts.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Attempts — Lightning v0.10.5
+ Lightning.Attempts — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Attempts
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
@@ -436,7 +436,7 @@ get(id, opts \\ [])
-Get an Attempt by id.
Optionally preload associations by passing a list of atoms to :include
.
Lightning.Attempts.get(id, include: [:workflow])
+Get an Attempt by id.
Optionally preload associations by passing a list of atoms to :include
.
Lightning.Attempts.get(id, include: [:workflow])
diff --git a/Lightning.Auditing.Model.html b/Lightning.Auditing.Model.html
index 14c5b4b185..90b756b88c 100644
--- a/Lightning.Auditing.Model.html
+++ b/Lightning.Auditing.Model.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Auditing.Model — Lightning v0.10.5
+ Lightning.Auditing.Model — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Auditing.Model
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Auditing.html b/Lightning.Auditing.html
index 78e6e1781d..d35d7efaa7 100644
--- a/Lightning.Auditing.html
+++ b/Lightning.Auditing.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Auditing — Lightning v0.10.5
+ Lightning.Auditing — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Auditing
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.AuthProviders.AuthConfig.html b/Lightning.AuthProviders.AuthConfig.html
index 3bbb2487f0..dd2a054b05 100644
--- a/Lightning.AuthProviders.AuthConfig.html
+++ b/Lightning.AuthProviders.AuthConfig.html
@@ -5,15 +5,15 @@
-
+
- Lightning.AuthProviders.AuthConfig — Lightning v0.10.5
+ Lightning.AuthProviders.AuthConfig — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.AuthProviders.AuthConfig
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.AuthProviders.CacheWarmer.html b/Lightning.AuthProviders.CacheWarmer.html
index 291d87dbad..04bba1c040 100644
--- a/Lightning.AuthProviders.CacheWarmer.html
+++ b/Lightning.AuthProviders.CacheWarmer.html
@@ -5,15 +5,15 @@
-
+
- Lightning.AuthProviders.CacheWarmer — Lightning v0.10.5
+ Lightning.AuthProviders.CacheWarmer — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.AuthProviders.CacheWarmer
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.AuthProviders.Google.html b/Lightning.AuthProviders.Google.html
index ceaa0f2312..3fc32c6366 100644
--- a/Lightning.AuthProviders.Google.html
+++ b/Lightning.AuthProviders.Google.html
@@ -5,15 +5,15 @@
-
+
- Lightning.AuthProviders.Google — Lightning v0.10.5
+ Lightning.AuthProviders.Google — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.AuthProviders.Google
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.AuthProviders.Handler.html b/Lightning.AuthProviders.Handler.html
index 8503837f8e..8f39167ea8 100644
--- a/Lightning.AuthProviders.Handler.html
+++ b/Lightning.AuthProviders.Handler.html
@@ -5,15 +5,15 @@
-
+
- Lightning.AuthProviders.Handler — Lightning v0.10.5
+ Lightning.AuthProviders.Handler — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.AuthProviders.Handler
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.AuthProviders.Store.html b/Lightning.AuthProviders.Store.html
index 3c9a6fe080..9f4da0adbc 100644
--- a/Lightning.AuthProviders.Store.html
+++ b/Lightning.AuthProviders.Store.html
@@ -5,15 +5,15 @@
-
+
- Lightning.AuthProviders.Store — Lightning v0.10.5
+ Lightning.AuthProviders.Store — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.AuthProviders.Store
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.AuthProviders.WellKnown.html b/Lightning.AuthProviders.WellKnown.html
index 87eb9f5528..3f0201e45c 100644
--- a/Lightning.AuthProviders.WellKnown.html
+++ b/Lightning.AuthProviders.WellKnown.html
@@ -5,15 +5,15 @@
-
+
- Lightning.AuthProviders.WellKnown — Lightning v0.10.5
+ Lightning.AuthProviders.WellKnown — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.AuthProviders.WellKnown
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
@@ -1854,14 +1854,14 @@ request(request)
Examples
-
request = %HTTPoison.Request{
+request = %HTTPoison.Request{
method: :post,
url: "https://my.website.com",
body: "{\"foo\": 3}",
- headers: [{"Accept", "application/json"}]
-}
+ headers: [{"Accept", "application/json"}]
+}
-request(request)
+request(request)
@@ -1919,7 +1919,7 @@ request(method, url, body \\ "",
Examples
-request(:post, "https://my.website.com", "{\"foo\": 3}", [{"Accept", "application/json"}])
+request(:post, "https://my.website.com", "{\"foo\": 3}", [{"Accept", "application/json"}])
diff --git a/Lightning.AuthProviders.html b/Lightning.AuthProviders.html
index 7b5b3db52e..3510215456 100644
--- a/Lightning.AuthProviders.html
+++ b/Lightning.AuthProviders.html
@@ -5,15 +5,15 @@
-
+
- Lightning.AuthProviders — Lightning v0.10.5
+ Lightning.AuthProviders — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.AuthProviders
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.CLI.Result.html b/Lightning.CLI.Result.html
index 9f134884d1..7baf9e14bb 100644
--- a/Lightning.CLI.Result.html
+++ b/Lightning.CLI.Result.html
@@ -5,15 +5,15 @@
-
+
- Lightning.CLI.Result — Lightning v0.10.5
+ Lightning.CLI.Result — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.CLI.Result
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
@@ -144,7 +144,7 @@
Logs
The OpenFn CLI returns JSON formatted log lines, which are decoded and added
-to a Result
struct.
There are two kinds of output:
{"level":"<<level>>","name":"<<module>>","message":"..."],"time":<<timestamp>>}
These are usually for general logging, and debugging.
{"message":["<<message|filepath|output>>"]}
The above is the equivalent of the output of a command
+to a Result
struct.There are two kinds of output:
{"level":"<<level>>","name":"<<module>>","message":"..."],"time":<<timestamp>>}
These are usually for general logging, and debugging.
{"message":["<<message|filepath|output>>"]}
The above is the equivalent of the output of a command
diff --git a/Lightning.CLI.html b/Lightning.CLI.html
index 7d2eaec4e9..4f555c9269 100644
--- a/Lightning.CLI.html
+++ b/Lightning.CLI.html
@@ -5,15 +5,15 @@
-
+
- Lightning.CLI — Lightning v0.10.5
+ Lightning.CLI — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.CLI
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Config.html b/Lightning.Config.html
index 15baca24ac..0ad27dc75f 100644
--- a/Lightning.Config.html
+++ b/Lightning.Config.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Config — Lightning v0.10.5
+ Lightning.Config — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Config
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Credentials.Audit.html b/Lightning.Credentials.Audit.html
index 44bf870ec4..26b8e47893 100644
--- a/Lightning.Credentials.Audit.html
+++ b/Lightning.Credentials.Audit.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Credentials.Audit — Lightning v0.10.5
+ Lightning.Credentials.Audit — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Credentials.Audit
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Credentials.Credential.html b/Lightning.Credentials.Credential.html
index c4be5a53e6..a94201f3a7 100644
--- a/Lightning.Credentials.Credential.html
+++ b/Lightning.Credentials.Credential.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Credentials.Credential — Lightning v0.10.5
+ Lightning.Credentials.Credential — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Credentials.Credential
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Credentials.Schema.html b/Lightning.Credentials.Schema.html
index 2b265aef76..280eed2cd9 100644
--- a/Lightning.Credentials.Schema.html
+++ b/Lightning.Credentials.Schema.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Credentials.Schema — Lightning v0.10.5
+ Lightning.Credentials.Schema — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Credentials.Schema
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Credentials.SchemaDocument.html b/Lightning.Credentials.SchemaDocument.html
index d1434254d8..1168ebdf29 100644
--- a/Lightning.Credentials.SchemaDocument.html
+++ b/Lightning.Credentials.SchemaDocument.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Credentials.SchemaDocument — Lightning v0.10.5
+ Lightning.Credentials.SchemaDocument — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Credentials.SchemaDocument
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Credentials.SensitiveValues.html b/Lightning.Credentials.SensitiveValues.html
index 7722925d2a..9ffef6d523 100644
--- a/Lightning.Credentials.SensitiveValues.html
+++ b/Lightning.Credentials.SensitiveValues.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Credentials.SensitiveValues — Lightning v0.10.5
+ Lightning.Credentials.SensitiveValues — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Credentials.SensitiveValues
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Credentials.html b/Lightning.Credentials.html
index 329fd57919..68485762c9 100644
--- a/Lightning.Credentials.html
+++ b/Lightning.Credentials.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Credentials — Lightning v0.10.5
+ Lightning.Credentials — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Credentials
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
@@ -399,8 +399,8 @@ change_credential(credential, attrs \\ %{})
Examples
-iex> change_credential(credential)
-%Ecto.Changeset{data: %Credential{}}
+iex> change_credential(credential)
+%Ecto.Changeset{data: %Credential{}}
@@ -430,11 +430,11 @@ create_credential(attrs \\ %{})
Examples
-iex> create_credential(%{field: value})
-{:ok, %Credential{}}
+iex> create_credential(%{field: value})
+{:ok, %Credential{}}
-iex> create_credential(%{field: bad_value})
-{:error, %Ecto.Changeset{}}
+iex> create_credential(%{field: bad_value})
+{:error, %Ecto.Changeset{}}
@@ -462,11 +462,11 @@ delete_credential(credential)
Examples
-iex> delete_credential(credential)
-{:ok, %Credential{}}
+iex> delete_credential(credential)
+{:ok, %Credential{}}
-iex> delete_credential(credential)
-{:error, %Ecto.Changeset{}}
+iex> delete_credential(credential)
+{:error, %Ecto.Changeset{}}
@@ -494,10 +494,10 @@ get_credential!(id)
Examples
-iex> get_credential!(123)
-%Credential{}
+iex> get_credential!(123)
+%Credential{}
-iex> get_credential!(456)
+iex> get_credential!(456)
** (Ecto.NoResultsError)
@@ -566,10 +566,10 @@ has_activity_in_projects?(credential)
Examples
-iex> has_activity_in_projects?(%Credential{id: some_id})
+iex> has_activity_in_projects?(%Credential{id: some_id})
true
-iex> has_activity_in_projects?(%Credential{id: another_id})
+iex> has_activity_in_projects?(%Credential{id: another_id})
false
@@ -608,11 +608,11 @@ invalid_projects_for_user(credential_id, us
Examples
-iex> can_credential_be_shared_to_user(credential_id, user_id)
-[]
+iex> can_credential_be_shared_to_user(credential_id, user_id)
+[]
-iex> can_credential_be_shared_to_user(credential_id, user_id)
-["52ea8758-6ce5-43d7-912f-6a1e1f11dc55"]
+iex> can_credential_be_shared_to_user(credential_id, user_id)
+["52ea8758-6ce5-43d7-912f-6a1e1f11dc55"]
@@ -640,8 +640,8 @@ list_credentials()
Examples
-iex> list_credentials()
-[%Credential{}, ...]
+iex> list_credentials()
+[%Credential{}, ...]
@@ -691,8 +691,8 @@ list_credentials_for_user(user_id)
Examples
-iex> list_credentials_for_user(123)
-[%Credential{user_id: 123}, %Credential{user_id: 123},...]
+iex> list_credentials_for_user(123)
+[%Credential{user_id: 123}, %Credential{user_id: 123},...]
@@ -787,11 +787,11 @@ schedule_credential_deletion(credential)
Examples
-iex> schedule_credential_deletion(%Credential{id: some_id})
-{:ok, %Credential{}}
+iex> schedule_credential_deletion(%Credential{id: some_id})
+{:ok, %Credential{}}
-iex> schedule_credential_deletion(%Credential{})
-{:error, %Ecto.Changeset{}}
+iex> schedule_credential_deletion(%Credential{})
+{:error, %Ecto.Changeset{}}
@@ -848,11 +848,11 @@ update_credential(credential, attrs)
Examples
-iex> update_credential(credential, %{field: new_value})
-{:ok, %Credential{}}
+iex> update_credential(credential, %{field: new_value})
+{:ok, %Credential{}}
-iex> update_credential(credential, %{field: bad_value})
-{:error, %Ecto.Changeset{}}
+iex> update_credential(credential, %{field: bad_value})
+{:error, %Ecto.Changeset{}}
diff --git a/Lightning.Demo.html b/Lightning.Demo.html
index 439b28725a..85bef27b5e 100644
--- a/Lightning.Demo.html
+++ b/Lightning.Demo.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Demo — Lightning v0.10.5
+ Lightning.Demo — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Demo
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Env.html b/Lightning.Env.html
index 2faffb5825..0d781d474a 100644
--- a/Lightning.Env.html
+++ b/Lightning.Env.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Env — Lightning v0.10.5
+ Lightning.Env — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Env
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.ExportUtils.html b/Lightning.ExportUtils.html
index 3ba669d77b..640852cd8e 100644
--- a/Lightning.ExportUtils.html
+++ b/Lightning.ExportUtils.html
@@ -5,15 +5,15 @@
-
+
- Lightning.ExportUtils — Lightning v0.10.5
+ Lightning.ExportUtils — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.ExportUtils
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.FailureNotifierView.html b/Lightning.FailureNotifierView.html
index 045d897252..57b829e5ef 100644
--- a/Lightning.FailureNotifierView.html
+++ b/Lightning.FailureNotifierView.html
@@ -5,15 +5,15 @@
-
+
- Lightning.FailureNotifierView — Lightning v0.10.5
+ Lightning.FailureNotifierView — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.FailureNotifierView
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Graph.html b/Lightning.Graph.html
index 385692c076..3b3b529890 100644
--- a/Lightning.Graph.html
+++ b/Lightning.Graph.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Graph — Lightning v0.10.5
+ Lightning.Graph — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Graph
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Helpers.html b/Lightning.Helpers.html
index d47362a6ab..0a6ef31e56 100644
--- a/Lightning.Helpers.html
+++ b/Lightning.Helpers.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Helpers — Lightning v0.10.5
+ Lightning.Helpers — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Helpers
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Invocation.Dataclip.html b/Lightning.Invocation.Dataclip.html
index 5ad117e261..8bb575fc68 100644
--- a/Lightning.Invocation.Dataclip.html
+++ b/Lightning.Invocation.Dataclip.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Invocation.Dataclip — Lightning v0.10.5
+ Lightning.Invocation.Dataclip — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Invocation.Dataclip
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Invocation.LogLine.html b/Lightning.Invocation.LogLine.html
index 15bc6445ee..a29ce4b423 100644
--- a/Lightning.Invocation.LogLine.html
+++ b/Lightning.Invocation.LogLine.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Invocation.LogLine — Lightning v0.10.5
+ Lightning.Invocation.LogLine — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Invocation.LogLine
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Invocation.Query.html b/Lightning.Invocation.Query.html
index 545692fcb8..8823d516c4 100644
--- a/Lightning.Invocation.Query.html
+++ b/Lightning.Invocation.Query.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Invocation.Query — Lightning v0.10.5
+ Lightning.Invocation.Query — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Invocation.Query
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Invocation.Run.html b/Lightning.Invocation.Run.html
index d73f16a9f9..cedce673a8 100644
--- a/Lightning.Invocation.Run.html
+++ b/Lightning.Invocation.Run.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Invocation.Run — Lightning v0.10.5
+ Lightning.Invocation.Run — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Invocation.Run
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Invocation.html b/Lightning.Invocation.html
index 1ba8a9c099..9aecdebec5 100644
--- a/Lightning.Invocation.html
+++ b/Lightning.Invocation.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Invocation — Lightning v0.10.5
+ Lightning.Invocation — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Invocation
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
@@ -489,8 +489,8 @@ change_dataclip(dataclip, attrs \\ %{})
Examples
-
iex> change_dataclip(dataclip)
-%Ecto.Changeset{data: %Dataclip{}}
+iex> change_dataclip(dataclip)
+%Ecto.Changeset{data: %Dataclip{}}
@@ -520,8 +520,8 @@ change_run(run, attrs \\ %{})
Examples
-iex> change_run(run)
-%Ecto.Changeset{data: %Run{}}
+iex> change_run(run)
+%Ecto.Changeset{data: %Run{}}
@@ -559,11 +559,11 @@ create_dataclip(attrs \\ %{})
Examples
-iex> create_dataclip(%{field: value})
-{:ok, %Dataclip{}}
+iex> create_dataclip(%{field: value})
+{:ok, %Dataclip{}}
-iex> create_dataclip(%{field: bad_value})
-{:error, %Ecto.Changeset{}}
+iex> create_dataclip(%{field: bad_value})
+{:error, %Ecto.Changeset{}}
@@ -593,11 +593,11 @@ create_run(attrs \\ %{})
Examples
-iex> create_run(%{field: value})
-{:ok, %Run{}}
+iex> create_run(%{field: value})
+{:ok, %Run{}}
-iex> create_run(%{field: bad_value})
-{:error, %Ecto.Changeset{}}
+iex> create_run(%{field: bad_value})
+{:error, %Ecto.Changeset{}}
@@ -625,11 +625,11 @@ delete_dataclip(dataclip)
Examples
-iex> delete_dataclip(dataclip)
-{:ok, %Dataclip{}}
+iex> delete_dataclip(dataclip)
+{:ok, %Dataclip{}}
-iex> delete_dataclip(dataclip)
-{:error, %Ecto.Changeset{}}
+iex> delete_dataclip(dataclip)
+{:error, %Ecto.Changeset{}}
@@ -664,14 +664,14 @@ get_dataclip(run)
Examples
-iex> get_dataclip("27b73932-16c7-4a72-86a3-85d805ccff98")
-%Dataclip{}
+iex> get_dataclip("27b73932-16c7-4a72-86a3-85d805ccff98")
+%Dataclip{}
-iex> get_dataclip("27b73932-16c7-4a72-86a3-85d805ccff98")
+iex> get_dataclip("27b73932-16c7-4a72-86a3-85d805ccff98")
nil
-iex> get_dataclip(%Run{id: "a uuid"})
-%Dataclip{}
+iex> get_dataclip(%Run{id: "a uuid"})
+%Dataclip{}
@@ -705,10 +705,10 @@ get_dataclip!(id)
Examples
-iex> get_dataclip!(123)
-%Dataclip{}
+iex> get_dataclip!(123)
+%Dataclip{}
-iex> get_dataclip!(456)
+iex> get_dataclip!(456)
** (Ecto.NoResultsError)
@@ -844,10 +844,10 @@ get_run!(id)
Examples
-iex> get_run!(123)
-%Run{}
+iex> get_run!(123)
+%Run{}
-iex> get_run!(456)
+iex> get_run!(456)
** (Ecto.NoResultsError)
@@ -948,8 +948,8 @@ list_dataclips()
Examples
-iex> list_dataclips()
-[%Dataclip{}, ...]
+iex> list_dataclips()
+[%Dataclip{}, ...]
@@ -1058,8 +1058,8 @@ list_runs()
Examples
-iex> list_runs()
-[%Run{}, ...]
+iex> list_runs()
+[%Run{}, ...]
@@ -1186,7 +1186,7 @@ search_workorders(project)
Example:
-search_workorders(%Project{id: 1}, %SearchParams{status: ["completed"]})
+search_workorders(%Project{id: 1}, %SearchParams{status: ["completed"]})
@@ -1260,11 +1260,11 @@ update_dataclip(dataclip, attrs)
Examples
-iex> update_dataclip(dataclip, %{field: new_value})
-{:ok, %Dataclip{}}
+iex> update_dataclip(dataclip, %{field: new_value})
+{:ok, %Dataclip{}}
-iex> update_dataclip(dataclip, %{field: bad_value})
-{:error, %Ecto.Changeset{}}
+iex> update_dataclip(dataclip, %{field: bad_value})
+{:error, %Ecto.Changeset{}}
diff --git a/Lightning.Janitor.html b/Lightning.Janitor.html
index 8de1aa0884..6db0854024 100644
--- a/Lightning.Janitor.html
+++ b/Lightning.Janitor.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Janitor — Lightning v0.10.5
+ Lightning.Janitor — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Janitor
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Jobs.html b/Lightning.Jobs.html
index 5809d0e695..635f63d9e4 100644
--- a/Lightning.Jobs.html
+++ b/Lightning.Jobs.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Jobs — Lightning v0.10.5
+ Lightning.Jobs — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Jobs
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
@@ -306,8 +306,8 @@ change_job(job, attrs \\ %{})
Examples
-
iex> change_job(job)
-%Ecto.Changeset{data: %Job{}}
+iex> change_job(job)
+%Ecto.Changeset{data: %Job{}}
@@ -337,11 +337,11 @@ create_job(attrs \\ %{})
Examples
-iex> create_job(%{field: value})
-{:ok, %Job{}}
+iex> create_job(%{field: value})
+{:ok, %Job{}}
-iex> create_job(%{field: bad_value})
-{:error, %Ecto.Changeset{}}
+iex> create_job(%{field: bad_value})
+{:error, %Ecto.Changeset{}}
@@ -405,10 +405,10 @@ get_job!(id)
Examples
-iex> get_job!(123)
-%Job{}
+iex> get_job!(123)
+%Job{}
-iex> get_job!(456)
+iex> get_job!(456)
** (Ecto.NoResultsError)
@@ -620,11 +620,11 @@ update_job(job, attrs)
Examples
-iex> update_job(job, %{field: new_value})
-{:ok, %Job{}}
+iex> update_job(job, %{field: new_value})
+{:ok, %Job{}}
-iex> update_job(job, %{field: bad_value})
-{:error, %Ecto.Changeset{}}
+iex> update_job(job, %{field: bad_value})
+{:error, %Ecto.Changeset{}}
diff --git a/Lightning.LogMessage.html b/Lightning.LogMessage.html
index c3e9222b40..89c1ba6233 100644
--- a/Lightning.LogMessage.html
+++ b/Lightning.LogMessage.html
@@ -5,15 +5,15 @@
-
+
- Lightning.LogMessage — Lightning v0.10.5
+ Lightning.LogMessage — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.LogMessage
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.MetadataService.Error.html b/Lightning.MetadataService.Error.html
index cba3cd05aa..5f0a955783 100644
--- a/Lightning.MetadataService.Error.html
+++ b/Lightning.MetadataService.Error.html
@@ -5,15 +5,15 @@
-
+
- Lightning.MetadataService.Error — Lightning v0.10.5
+ Lightning.MetadataService.Error — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.MetadataService.Error exception
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.MetadataService.html b/Lightning.MetadataService.html
index f6ee19679e..8abd944580 100644
--- a/Lightning.MetadataService.html
+++ b/Lightning.MetadataService.html
@@ -5,15 +5,15 @@
-
+
- Lightning.MetadataService — Lightning v0.10.5
+ Lightning.MetadataService — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.MetadataService
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Name.html b/Lightning.Name.html
index 2ce7406f78..94b8da9d9a 100644
--- a/Lightning.Name.html
+++ b/Lightning.Name.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Name — Lightning v0.10.5
+ Lightning.Name — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Name
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.ObanManager.html b/Lightning.ObanManager.html
index 0e05a9930e..99717564b5 100644
--- a/Lightning.ObanManager.html
+++ b/Lightning.ObanManager.html
@@ -5,15 +5,15 @@
-
+
- Lightning.ObanManager — Lightning v0.10.5
+ Lightning.ObanManager — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.ObanManager
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Policies.Permissions.html b/Lightning.Policies.Permissions.html
index b9a280fd17..3a936eba00 100644
--- a/Lightning.Policies.Permissions.html
+++ b/Lightning.Policies.Permissions.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Policies.Permissions — Lightning v0.10.5
+ Lightning.Policies.Permissions — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,20 +131,20 @@
Lightning.Policies.Permissions
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
This module defines a unique interface managing authorizations in Lightning.
Users in Lightning have instance-wide and project-wide roles which determine their level of access to resources in the application. Fo rmore details see the documentation.
These authorizations policies are all implemented under the lib/lightning/policies
folder. In that folder you can find 3 files:
- The
users.ex
file has all the policies for the instances wide access levels - The
project_users.ex
file has all the policies for the project wide access levels - The
permissions.ex
file defines the Lightning.Policies.Permissions.can/4
interface. Which is a wrapper around the Bodyguard.permit/4
function.
-We use that interface to be able to harmonize the use of policies accross the entire app.
All the policies are tested in the test/lightning/policies
folder. And the test are written in a way that allows the reader to quickly who can do what in the app.
We have two variants of the Lightning.Policies.Permissions.can/4
interface:
Lightning.Policies.Permissions.can(policy, action, actor, resource)
returns :ok
if the actor can perform the action on the resource and {:error, :unauthorized}
otherwise.Lightning.Policies.Permissions.can?(policy, action, actor, resource)
returns true
if the actor can perform the action on the resource and false
otherwise.
Here is an example of how we the Lightning.Policies.Permissions.can/4
interface to check if the a user can edit a job or not
can_edit_job = Lightning.Policies.ProjectUsers |> Lightning.Policies.Permissions.can?(:edit_job, socket.assigns.current_user, socket.assigns.project)
+We use that interface to be able to harmonize the use of policies accross the entire app.
All the policies are tested in the test/lightning/policies
folder. And the test are written in a way that allows the reader to quickly who can do what in the app.
We have two variants of the Lightning.Policies.Permissions.can/4
interface:
Lightning.Policies.Permissions.can(policy, action, actor, resource)
returns :ok
if the actor can perform the action on the resource and {:error, :unauthorized}
otherwise.Lightning.Policies.Permissions.can?(policy, action, actor, resource)
returns true
if the actor can perform the action on the resource and false
otherwise.
Here is an example of how we the Lightning.Policies.Permissions.can/4
interface to check if the a user can edit a job or not
can_edit_job = Lightning.Policies.ProjectUsers |> Lightning.Policies.Permissions.can?(:edit_job, socket.assigns.current_user, socket.assigns.project)
-if can_edit_job do
+if can_edit_job do
# allow user to edit the job
-else
+else
# quick user out
-end
+end
@@ -220,11 +220,11 @@ can(policy, action, user, params \\ [])
Examples
-iex> can(Lightning.Policies.Users, :create_workflow, user, project)
+iex> can(Lightning.Policies.Users, :create_workflow, user, project)
:ok
-iex> can(Lightning.Policies.Users, :create_project, user, %{})
-{:error, :unauthorized}
+iex> can(Lightning.Policies.Users, :create_project, user, %{})
+{:error, :unauthorized}
@@ -254,10 +254,10 @@ can?(policy, action, user, params \\ [])
Examples
-iex> can(Lightning.Policies.Users, :create_workflow, user, project)
+iex> can(Lightning.Policies.Users, :create_workflow, user, project)
true
-iex> can(Lightning.Policies.Users, :create_project, user, %{})
+iex> can(Lightning.Policies.Users, :create_project, user, %{})
false
diff --git a/Lightning.Policies.ProjectUsers.html b/Lightning.Policies.ProjectUsers.html
index 479421c092..18e4586c4b 100644
--- a/Lightning.Policies.ProjectUsers.html
+++ b/Lightning.Policies.ProjectUsers.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Policies.ProjectUsers — Lightning v0.10.5
+ Lightning.Policies.ProjectUsers — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Policies.ProjectUsers
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Policies.Provisioning.html b/Lightning.Policies.Provisioning.html
index d7aaeda916..ea0261c499 100644
--- a/Lightning.Policies.Provisioning.html
+++ b/Lightning.Policies.Provisioning.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Policies.Provisioning — Lightning v0.10.5
+ Lightning.Policies.Provisioning — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Policies.Provisioning
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Policies.Users.html b/Lightning.Policies.Users.html
index e06fd47162..ddef98eec9 100644
--- a/Lightning.Policies.Users.html
+++ b/Lightning.Policies.Users.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Policies.Users — Lightning v0.10.5
+ Lightning.Policies.Users — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Policies.Users
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Projects.Project.html b/Lightning.Projects.Project.html
index c2029f11d0..7feebcc5bd 100644
--- a/Lightning.Projects.Project.html
+++ b/Lightning.Projects.Project.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Projects.Project — Lightning v0.10.5
+ Lightning.Projects.Project — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Projects.Project
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Projects.ProjectCredential.html b/Lightning.Projects.ProjectCredential.html
index 473e4e61b9..0931b86278 100644
--- a/Lightning.Projects.ProjectCredential.html
+++ b/Lightning.Projects.ProjectCredential.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Projects.ProjectCredential — Lightning v0.10.5
+ Lightning.Projects.ProjectCredential — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Projects.ProjectCredential
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Projects.ProjectUser.DigestEnum.html b/Lightning.Projects.ProjectUser.DigestEnum.html
index 10d412b11d..324b68799e 100644
--- a/Lightning.Projects.ProjectUser.DigestEnum.html
+++ b/Lightning.Projects.ProjectUser.DigestEnum.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Projects.ProjectUser.DigestEnum — Lightning v0.10.5
+ Lightning.Projects.ProjectUser.DigestEnum — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Projects.ProjectUser.DigestEnum
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Projects.ProjectUser.RolesEnum.html b/Lightning.Projects.ProjectUser.RolesEnum.html
index e3d581c655..b3ca75f633 100644
--- a/Lightning.Projects.ProjectUser.RolesEnum.html
+++ b/Lightning.Projects.ProjectUser.RolesEnum.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Projects.ProjectUser.RolesEnum — Lightning v0.10.5
+ Lightning.Projects.ProjectUser.RolesEnum — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Projects.ProjectUser.RolesEnum
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Projects.ProjectUser.html b/Lightning.Projects.ProjectUser.html
index b1af57eea4..9cf1abd28b 100644
--- a/Lightning.Projects.ProjectUser.html
+++ b/Lightning.Projects.ProjectUser.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Projects.ProjectUser — Lightning v0.10.5
+ Lightning.Projects.ProjectUser — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Projects.ProjectUser
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Projects.Provisioner.html b/Lightning.Projects.Provisioner.html
index f4d9fc3973..8e94131737 100644
--- a/Lightning.Projects.Provisioner.html
+++ b/Lightning.Projects.Provisioner.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Projects.Provisioner — Lightning v0.10.5
+ Lightning.Projects.Provisioner — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Projects.Provisioner
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Projects.html b/Lightning.Projects.html
index 2895e5dd71..cf79b25b04 100644
--- a/Lightning.Projects.html
+++ b/Lightning.Projects.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Projects — Lightning v0.10.5
+ Lightning.Projects — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Projects
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
@@ -547,8 +547,8 @@ change_project(project, attrs \\ %{})
Examples
-
iex> change_project(project)
-%Ecto.Changeset{data: %Project{}}
+iex> change_project(project)
+%Ecto.Changeset{data: %Project{}}
@@ -578,11 +578,11 @@ create_project(attrs \\ %{})
Examples
-iex> create_project(%{field: value})
-{:ok, %Project{}}
+iex> create_project(%{field: value})
+{:ok, %Project{}}
-iex> create_project(%{field: bad_value})
-{:error, %Ecto.Changeset{}}
+iex> create_project(%{field: bad_value})
+{:error, %Ecto.Changeset{}}
@@ -611,11 +611,11 @@ delete_project(project)
Examples
-iex> delete_project(project)
-{:ok, %Project{}}
+iex> delete_project(project)
+{:ok, %Project{}}
-iex> delete_project(project)
-{:error, %Ecto.Changeset{}}
+iex> delete_project(project)
+{:error, %Ecto.Changeset{}}
@@ -649,8 +649,8 @@ export_project(atom, project_id)
Examples
-iex> export_project(:yaml, project_id)
-{:ok, string}
+iex> export_project(:yaml, project_id)
+{:ok, string}
@@ -700,10 +700,10 @@ get_project!(id)
Examples
-iex> get_project!(123)
-%Project{}
+iex> get_project!(123)
+%Project{}
-iex> get_project!(456)
+iex> get_project!(456)
** (Ecto.NoResultsError)
@@ -798,10 +798,10 @@ get_project_user!(id)
Examples
-iex> get_project_user!(123)
-%ProjectUser{}
+iex> get_project_user!(123)
+%ProjectUser{}
-iex> get_project_user!(456)
+iex> get_project_user!(456)
** (Ecto.NoResultsError)
@@ -831,16 +831,16 @@ get_project_user_role(user, project)
Examples
-iex> get_project_user_role(user, project)
+iex> get_project_user_role(user, project)
:admin
-iex> get_project_user_role(user, project)
+iex> get_project_user_role(user, project)
:viewer
-iex> get_project_user_role(user, project)
+iex> get_project_user_role(user, project)
:editor
-iex> get_project_user_role(user, project)
+iex> get_project_user_role(user, project)
:owner
@@ -891,10 +891,10 @@ get_project_with_users!(id)
Examples
-iex> get_project!(123)
-%Project{}
+iex> get_project!(123)
+%Project{}
-iex> get_project!(456)
+iex> get_project!(456)
** (Ecto.NoResultsError)
@@ -1005,8 +1005,8 @@ list_projects()
Examples
-iex> list_projects()
-[%Project{}, ...]
+iex> list_projects()
+[%Project{}, ...]
@@ -1398,11 +1398,11 @@ update_project(project, attrs)
Examples
-iex> update_project(project, %{field: new_value})
-{:ok, %Project{}}
+iex> update_project(project, %{field: new_value})
+{:ok, %Project{}}
-iex> update_project(project, %{field: bad_value})
-{:error, %Ecto.Changeset{}}
+iex> update_project(project, %{field: bad_value})
+{:error, %Ecto.Changeset{}}
@@ -1430,11 +1430,11 @@ update_project_user(project_user, attrs)
Examples
-iex> update_project_user(project_user, %{field: new_value})
-{:ok, %ProjectUser{}}
+iex> update_project_user(project_user, %{field: new_value})
+{:ok, %ProjectUser{}}
-iex> update_project_user(projectUser, %{field: bad_value})
-{:error, %Ecto.Changeset{}}
+iex> update_project_user(projectUser, %{field: bad_value})
+{:error, %Ecto.Changeset{}}
@@ -1484,8 +1484,8 @@ validate_for_deletion(project, attrs)
Examples
-iex> validate_for_deletion(project)
-%Ecto.Changeset{data: %Project{}}
+iex> validate_for_deletion(project)
+%Ecto.Changeset{data: %Project{}}
diff --git a/Lightning.PromEx.html b/Lightning.PromEx.html
index d6c8faac12..8fa9c028b2 100644
--- a/Lightning.PromEx.html
+++ b/Lightning.PromEx.html
@@ -5,15 +5,15 @@
-
+
- Lightning.PromEx — Lightning v0.10.5
+ Lightning.PromEx — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.PromEx
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
@@ -142,24 +142,24 @@
more details regarding configuring PromEx:config :lightning, Lightning.PromEx,
disabled: false,
manual_metrics_start_delay: :no_delay,
- drop_metrics_groups: [],
+ drop_metrics_groups: [],
grafana: :disabled,
metrics_server: :disabled
Add this module to your application supervision tree. It should be one of the first
things that is started so that no Telemetry events are missed. For example, if PromEx
is started after your Repo module, you will miss Ecto's init events and the dashboards
-will be missing some data points:
def start(_type, _args) do
- children = [
+will be missing some data points:def start(_type, _args) do
+ children = [
Lightning.PromEx,
...
- ]
+ ]
...
-end
Update your endpoint.ex
file to expose your metrics (or configure a standalone
+
end
Update your endpoint.ex
file to expose your metrics (or configure a standalone
server using the :metrics_server
config options). Be sure to put this plug before
your Plug.Telemetry
entry so that you can avoid having calls to your /metrics
endpoint create their own metrics and logs which can pollute your logs/metrics given
-that Prometheus will scrape at a regular interval and that can get noisy:
defmodule LightningWeb.Endpoint do
+that Prometheus will scrape at a regular interval and that can get noisy:defmodule LightningWeb.Endpoint do
use Phoenix.Endpoint, otp_app: :lightning
...
@@ -167,7 +167,7 @@
plug PromEx.Plug, prom_ex_module: Lightning.PromEx
...
-end
Update the list of plugins in the plugins/0
function return list to reflect your
+
end
Update the list of plugins in the plugins/0
function return list to reflect your
application's dependencies. Also update the list of dashboards that are to be uploaded
to Grafana in the dashboards/0
function.
diff --git a/Lightning.Release.html b/Lightning.Release.html
index 6b66b2028d..9c016f4666 100644
--- a/Lightning.Release.html
+++ b/Lightning.Release.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Release — Lightning v0.10.5
+ Lightning.Release — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Release
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Repo.html b/Lightning.Repo.html
index 6987c3e329..fd35a4f81f 100644
--- a/Lightning.Repo.html
+++ b/Lightning.Repo.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Repo — Lightning v0.10.5
+ Lightning.Repo — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Repo
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
@@ -1738,13 +1738,13 @@ transact(fun, opts \\ [])
A small wrapper around Repo.transaction/2
.
Commits the transaction if the lambda returns :ok
or {:ok, result}
,
rolling it back if the lambda returns :error
or {:error, reason}
. In both
-cases, the function returns the result of the lambda.
Example:
Repo.transact(fn ->
- with {:ok, user} <- Accounts.create_user(params),
- {:ok, _log} <- Logs.log_action(:user_registered, user),
- {:ok, _job} <- Mailer.enqueue_email_confirmation(user) do
- {:ok, user}
- end
-end)
From blog post found here
+cases, the function returns the result of the lambda.Example:
Repo.transact(fn ->
+ with {:ok, user} <- Accounts.create_user(params),
+ {:ok, _log} <- Logs.log_action(:user_registered, user),
+ {:ok, _job} <- Mailer.enqueue_email_confirmation(user) do
+ {:ok, user}
+ end
+end)
From blog post found here
diff --git a/Lightning.RunSearchForm.html b/Lightning.RunSearchForm.html
index bd01446b94..31f1d5ea26 100644
--- a/Lightning.RunSearchForm.html
+++ b/Lightning.RunSearchForm.html
@@ -5,15 +5,15 @@
-
+
- Lightning.RunSearchForm — Lightning v0.10.5
+ Lightning.RunSearchForm — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.RunSearchForm
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Runtime.LogAgent.StringBuffer.html b/Lightning.Runtime.LogAgent.StringBuffer.html
index aa86daa3ea..53d6297a8e 100644
--- a/Lightning.Runtime.LogAgent.StringBuffer.html
+++ b/Lightning.Runtime.LogAgent.StringBuffer.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Runtime.LogAgent.StringBuffer — Lightning v0.10.5
+ Lightning.Runtime.LogAgent.StringBuffer — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Runtime.LogAgent.StringBuffer
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Runtime.LogAgent.html b/Lightning.Runtime.LogAgent.html
index 35ab920c8d..cb815d4f17 100644
--- a/Lightning.Runtime.LogAgent.html
+++ b/Lightning.Runtime.LogAgent.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Runtime.LogAgent — Lightning v0.10.5
+ Lightning.Runtime.LogAgent — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,16 +131,16 @@
Lightning.Runtime.LogAgent
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
Agent facility to consume STDOUT/STDERR byte by byte.
Since it works on a byte by byte basis, you will need to perform line-splitting
-yourself.
Usage:
{:ok, log} = LogAgent.start_link()
-"foo" = LogAgent.process_chunk(log, {:stdout, "foo"})
-"foobar" = LogAgent.process_chunk(log, {:stdout, "bar"})
+yourself.Usage:
{:ok, log} = LogAgent.start_link()
+"foo" = LogAgent.process_chunk(log, {:stdout, "foo"})
+"foobar" = LogAgent.process_chunk(log, {:stdout, "bar"})
diff --git a/Lightning.Runtime.Result.html b/Lightning.Runtime.Result.html
index f35da07534..799f29d6d6 100644
--- a/Lightning.Runtime.Result.html
+++ b/Lightning.Runtime.Result.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Runtime.Result — Lightning v0.10.5
+ Lightning.Runtime.Result — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Runtime.Result
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Runtime.RunSpec.html b/Lightning.Runtime.RunSpec.html
index 8530637af5..719a9d311d 100644
--- a/Lightning.Runtime.RunSpec.html
+++ b/Lightning.Runtime.RunSpec.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Runtime.RunSpec — Lightning v0.10.5
+ Lightning.Runtime.RunSpec — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Runtime.RunSpec
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Runtime.RuntimeManager.RuntimeClient.html b/Lightning.Runtime.RuntimeManager.RuntimeClient.html
index 504904e938..5ac9def6a5 100644
--- a/Lightning.Runtime.RuntimeManager.RuntimeClient.html
+++ b/Lightning.Runtime.RuntimeManager.RuntimeClient.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Runtime.RuntimeManager.RuntimeClient — Lightning v0.10.5
+ Lightning.Runtime.RuntimeManager.RuntimeClient — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Runtime.RuntimeManager.RuntimeClient behaviour
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Runtime.RuntimeManager.html b/Lightning.Runtime.RuntimeManager.html
index dd961bcb52..c00804fe68 100644
--- a/Lightning.Runtime.RuntimeManager.html
+++ b/Lightning.Runtime.RuntimeManager.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Runtime.RuntimeManager — Lightning v0.10.5
+ Lightning.Runtime.RuntimeManager — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Runtime.RuntimeManager
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
@@ -146,8 +146,8 @@
Sample:
config :lightining, Elixir.Lightning.Runtime.RuntimeManager,
version: "0.1.0",
start: true,
args: ~w(js/app.js --bundle --target=es2016 --outdir=../priv/static/assets),
-cd: Path.expand("../assets", __DIR__),
-env: %{}
Options:
:version
- the expected runtime version
:start
- flag to start the runtime manager. If false
the GenServer
+
cd: Path.expand("../assets", __DIR__),
+env: %{}
Options:
:version
- the expected runtime version
:start
- flag to start the runtime manager. If false
the GenServer
won't be started
:path
- the path to find the runtime executable at. By
default, it is automatically downloaded and placed inside
the _build
directory of your current app
Overriding the :path
is not recommended, as we will automatically
diff --git a/Lightning.SafetyString.html b/Lightning.SafetyString.html
index 9028b1ef5f..e2f6758745 100644
--- a/Lightning.SafetyString.html
+++ b/Lightning.SafetyString.html
@@ -5,15 +5,15 @@
-
+
-
Lightning.SafetyString — Lightning v0.10.5
+ Lightning.SafetyString — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.SafetyString
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Scrubber.html b/Lightning.Scrubber.html
index 74505dbcdb..4487564612 100644
--- a/Lightning.Scrubber.html
+++ b/Lightning.Scrubber.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Scrubber — Lightning v0.10.5
+ Lightning.Scrubber — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,17 +131,17 @@
Lightning.Scrubber
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
-Process used to scrub strings of sensitive information.
Can be started via start_link/1
.
{:ok, scrubber} =
- Lightning.Scrubber.start_link(
+Process used to scrub strings of sensitive information.
Can be started via start_link/1
.
{:ok, scrubber} =
+ Lightning.Scrubber.start_link(
samples:
- Lightning.Credentials.sensitive_values_for(credential)
- )
Takes an optional :name
key, in case you need to name the process.
+ Lightning.Credentials.sensitive_values_for(credential)
+ )
Takes an optional :name
key, in case you need to name the process.
diff --git a/Lightning.Security.html b/Lightning.Security.html
index 2bb8e5cab6..e4a9a62ac0 100644
--- a/Lightning.Security.html
+++ b/Lightning.Security.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Security — Lightning v0.10.5
+ Lightning.Security — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Security
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.SetupUtils.html b/Lightning.SetupUtils.html
index 9148f879bd..b6415a228d 100644
--- a/Lightning.SetupUtils.html
+++ b/Lightning.SetupUtils.html
@@ -5,15 +5,15 @@
-
+
- Lightning.SetupUtils — Lightning v0.10.5
+ Lightning.SetupUtils — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.SetupUtils
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.TaskWorker.html b/Lightning.TaskWorker.html
index b164369051..a72eccd38f 100644
--- a/Lightning.TaskWorker.html
+++ b/Lightning.TaskWorker.html
@@ -5,15 +5,15 @@
-
+
- Lightning.TaskWorker — Lightning v0.10.5
+ Lightning.TaskWorker — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.TaskWorker
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
@@ -140,7 +140,7 @@
A TaskWorker with concurrency limits.
A simple concurrency limiter that wraps Task.Supervisor
, which already does
have the ability to specify max_children
; it throws an error when
that limit is exceeded.
To use it, start it like any other process; ideally in your supervision tree.
...,
- {Lightning.TaskWorker, name: :cli_task_worker, max_tasks: 4}
Options
:max_tasks
Defaults to the number of system schedulers available to the vm.
+ {Lightning.TaskWorker, name: :cli_task_worker, max_tasks: 4}
Options
:max_tasks
Defaults to the number of system schedulers available to the vm.
diff --git a/Lightning.UnixDateTime.html b/Lightning.UnixDateTime.html
index 3b58c0307e..92b74241ee 100644
--- a/Lightning.UnixDateTime.html
+++ b/Lightning.UnixDateTime.html
@@ -5,15 +5,15 @@
-
+
- Lightning.UnixDateTime — Lightning v0.10.5
+ Lightning.UnixDateTime — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.UnixDateTime
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Validators.html b/Lightning.Validators.html
index 2bafdb1d42..f84e817174 100644
--- a/Lightning.Validators.html
+++ b/Lightning.Validators.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Validators — Lightning v0.10.5
+ Lightning.Validators — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Validators
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
@@ -223,10 +223,10 @@ validate_exclusive(changeset, fields, messa
Validate that only one of the fields is set at a time.
Example:
changeset
-|> validate_exclusive(
- [:source_job_id, :source_trigger_id],
+|> validate_exclusive(
+ [:source_job_id, :source_trigger_id],
"source_job_id and source_trigger_id are mutually exclusive"
-)
+)
diff --git a/Lightning.Vault.html b/Lightning.Vault.html
index fa4926dfef..ec3de32a8d 100644
--- a/Lightning.Vault.html
+++ b/Lightning.Vault.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Vault — Lightning v0.10.5
+ Lightning.Vault — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Vault
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.VersionControl.GithubClient.html b/Lightning.VersionControl.GithubClient.html
index 39eeb09ec5..806f92dab9 100644
--- a/Lightning.VersionControl.GithubClient.html
+++ b/Lightning.VersionControl.GithubClient.html
@@ -5,15 +5,15 @@
-
+
- Lightning.VersionControl.GithubClient — Lightning v0.10.5
+ Lightning.VersionControl.GithubClient — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
delete("/users")
-delete("/users", query: [scope: "admin"])
-delete(client, "/users")
-delete(client, "/users", query: [scope: "admin"])
-delete(client, "/users", body: %{name: "Jon"})
+Perform a DELETE request.
See request/1
or request/2
for options definition.
delete("/users")
+delete("/users", query: [scope: "admin"])
+delete(client, "/users")
+delete(client, "/users", query: [scope: "admin"])
+delete(client, "/users", body: %{name: "Jon"})
@@ -491,11 +491,11 @@ delete!(client, url, opts)
-Perform a DELETE request.
See request!/1
or request!/2
for options definition.
delete!("/users")
-delete!("/users", query: [scope: "admin"])
-delete!(client, "/users")
-delete!(client, "/users", query: [scope: "admin"])
-delete!(client, "/users", body: %{name: "Jon"})
+Perform a DELETE request.
See request!/1
or request!/2
for options definition.
delete!("/users")
+delete!("/users", query: [scope: "admin"])
+delete!(client, "/users")
+delete!(client, "/users", query: [scope: "admin"])
+delete!(client, "/users", body: %{name: "Jon"})
@@ -545,11 +545,11 @@ get(client, url, opts)
-Perform a GET request.
See request/1
or request/2
for options definition.
get("/users")
-get("/users", query: [scope: "admin"])
-get(client, "/users")
-get(client, "/users", query: [scope: "admin"])
-get(client, "/users", body: %{name: "Jon"})
+Perform a GET request.
See request/1
or request/2
for options definition.
get("/users")
+get("/users", query: [scope: "admin"])
+get(client, "/users")
+get(client, "/users", query: [scope: "admin"])
+get(client, "/users", body: %{name: "Jon"})
@@ -578,11 +578,11 @@ get!(client, url, opts)
-Perform a GET request.
See request!/1
or request!/2
for options definition.
get!("/users")
-get!("/users", query: [scope: "admin"])
-get!(client, "/users")
-get!(client, "/users", query: [scope: "admin"])
-get!(client, "/users", body: %{name: "Jon"})
+Perform a GET request.
See request!/1
or request!/2
for options definition.
get!("/users")
+get!("/users", query: [scope: "admin"])
+get!(client, "/users")
+get!(client, "/users", query: [scope: "admin"])
+get!(client, "/users", body: %{name: "Jon"})
@@ -632,11 +632,11 @@ head(client, url, opts)
-Perform a HEAD request.
See request/1
or request/2
for options definition.
head("/users")
-head("/users", query: [scope: "admin"])
-head(client, "/users")
-head(client, "/users", query: [scope: "admin"])
-head(client, "/users", body: %{name: "Jon"})
+Perform a HEAD request.
See request/1
or request/2
for options definition.
head("/users")
+head("/users", query: [scope: "admin"])
+head(client, "/users")
+head(client, "/users", query: [scope: "admin"])
+head(client, "/users", body: %{name: "Jon"})
@@ -665,11 +665,11 @@ head!(client, url, opts)
-Perform a HEAD request.
See request!/1
or request!/2
for options definition.
head!("/users")
-head!("/users", query: [scope: "admin"])
-head!(client, "/users")
-head!(client, "/users", query: [scope: "admin"])
-head!(client, "/users", body: %{name: "Jon"})
+Perform a HEAD request.
See request!/1
or request!/2
for options definition.
head!("/users")
+head!("/users", query: [scope: "admin"])
+head!(client, "/users")
+head!(client, "/users", query: [scope: "admin"])
+head!(client, "/users", body: %{name: "Jon"})
@@ -719,11 +719,11 @@ options(client, url, opts)
-Perform a OPTIONS request.
See request/1
or request/2
for options definition.
options("/users")
-options("/users", query: [scope: "admin"])
-options(client, "/users")
-options(client, "/users", query: [scope: "admin"])
-options(client, "/users", body: %{name: "Jon"})
+Perform a OPTIONS request.
See request/1
or request/2
for options definition.
options("/users")
+options("/users", query: [scope: "admin"])
+options(client, "/users")
+options(client, "/users", query: [scope: "admin"])
+options(client, "/users", body: %{name: "Jon"})
@@ -752,11 +752,11 @@ options!(client, url, opts)
-Perform a OPTIONS request.
See request!/1
or request!/2
for options definition.
options!("/users")
-options!("/users", query: [scope: "admin"])
-options!(client, "/users")
-options!(client, "/users", query: [scope: "admin"])
-options!(client, "/users", body: %{name: "Jon"})
+Perform a OPTIONS request.
See request!/1
or request!/2
for options definition.
options!("/users")
+options!("/users", query: [scope: "admin"])
+options!(client, "/users")
+options!(client, "/users", query: [scope: "admin"])
+options!(client, "/users", body: %{name: "Jon"})
@@ -785,10 +785,10 @@ patch(client, url, body, opts)
-Perform a PATCH request.
See request/1
or request/2
for options definition.
patch("/users", %{name: "Jon"})
-patch("/users", %{name: "Jon"}, query: [scope: "admin"])
-patch(client, "/users", %{name: "Jon"})
-patch(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
+Perform a PATCH request.
See request/1
or request/2
for options definition.
patch("/users", %{name: "Jon"})
+patch("/users", %{name: "Jon"}, query: [scope: "admin"])
+patch(client, "/users", %{name: "Jon"})
+patch(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
@@ -817,10 +817,10 @@ patch!(client, url, body, opts)
-Perform a PATCH request.
See request!/1
or request!/2
for options definition.
patch!("/users", %{name: "Jon"})
-patch!("/users", %{name: "Jon"}, query: [scope: "admin"])
-patch!(client, "/users", %{name: "Jon"})
-patch!(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
+Perform a PATCH request.
See request!/1
or request!/2
for options definition.
patch!("/users", %{name: "Jon"})
+patch!("/users", %{name: "Jon"}, query: [scope: "admin"])
+patch!(client, "/users", %{name: "Jon"})
+patch!(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
@@ -849,10 +849,10 @@ post(client, url, body, opts)
-Perform a POST request.
See request/1
or request/2
for options definition.
post("/users", %{name: "Jon"})
-post("/users", %{name: "Jon"}, query: [scope: "admin"])
-post(client, "/users", %{name: "Jon"})
-post(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
+Perform a POST request.
See request/1
or request/2
for options definition.
post("/users", %{name: "Jon"})
+post("/users", %{name: "Jon"}, query: [scope: "admin"])
+post(client, "/users", %{name: "Jon"})
+post(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
@@ -881,10 +881,10 @@ post!(client, url, body, opts)
-Perform a POST request.
See request!/1
or request!/2
for options definition.
post!("/users", %{name: "Jon"})
-post!("/users", %{name: "Jon"}, query: [scope: "admin"])
-post!(client, "/users", %{name: "Jon"})
-post!(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
+Perform a POST request.
See request!/1
or request!/2
for options definition.
post!("/users", %{name: "Jon"})
+post!("/users", %{name: "Jon"}, query: [scope: "admin"])
+post!(client, "/users", %{name: "Jon"})
+post!(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
@@ -913,10 +913,10 @@ put(client, url, body, opts)
-Perform a PUT request.
See request/1
or request/2
for options definition.
put("/users", %{name: "Jon"})
-put("/users", %{name: "Jon"}, query: [scope: "admin"])
-put(client, "/users", %{name: "Jon"})
-put(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
+Perform a PUT request.
See request/1
or request/2
for options definition.
put("/users", %{name: "Jon"})
+put("/users", %{name: "Jon"}, query: [scope: "admin"])
+put(client, "/users", %{name: "Jon"})
+put(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
@@ -945,10 +945,10 @@ put!(client, url, body, opts)
-Perform a PUT request.
See request!/1
or request!/2
for options definition.
put!("/users", %{name: "Jon"})
-put!("/users", %{name: "Jon"}, query: [scope: "admin"])
-put!(client, "/users", %{name: "Jon"})
-put!(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
+Perform a PUT request.
See request!/1
or request!/2
for options definition.
put!("/users", %{name: "Jon"})
+put!("/users", %{name: "Jon"}, query: [scope: "admin"])
+put!(client, "/users", %{name: "Jon"})
+put!(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
@@ -990,11 +990,11 @@ request(client \\ %Tesla.Client{}, options)
Examples
-ExampleApi.request(method: :get, url: "/users/path")
+ExampleApi.request(method: :get, url: "/users/path")
# use shortcut methods
-ExampleApi.get("/users/1")
-ExampleApi.post(client, "/users", %{name: "Jon"})
+ExampleApi.get("/users/1")
+ExampleApi.post(client, "/users", %{name: "Jon"})
@@ -1052,11 +1052,11 @@ trace(client, url, opts)
-Perform a TRACE request.
See request/1
or request/2
for options definition.
trace("/users")
-trace("/users", query: [scope: "admin"])
-trace(client, "/users")
-trace(client, "/users", query: [scope: "admin"])
-trace(client, "/users", body: %{name: "Jon"})
+Perform a TRACE request.
See request/1
or request/2
for options definition.
trace("/users")
+trace("/users", query: [scope: "admin"])
+trace(client, "/users")
+trace(client, "/users", query: [scope: "admin"])
+trace(client, "/users", body: %{name: "Jon"})
@@ -1085,11 +1085,11 @@ trace!(client, url, opts)
-Perform a TRACE request.
See request!/1
or request!/2
for options definition.
trace!("/users")
-trace!("/users", query: [scope: "admin"])
-trace!(client, "/users")
-trace!(client, "/users", query: [scope: "admin"])
-trace!(client, "/users", body: %{name: "Jon"})
+Perform a TRACE request.
See request!/1
or request!/2
for options definition.
trace!("/users")
+trace!("/users", query: [scope: "admin"])
+trace!(client, "/users")
+trace!(client, "/users", query: [scope: "admin"])
+trace!(client, "/users", body: %{name: "Jon"})
diff --git a/Lightning.VersionControl.GithubError.html b/Lightning.VersionControl.GithubError.html
index c876dd8889..88e09c68fc 100644
--- a/Lightning.VersionControl.GithubError.html
+++ b/Lightning.VersionControl.GithubError.html
@@ -5,15 +5,15 @@
-
+
- Lightning.VersionControl.GithubError — Lightning v0.10.5
+ Lightning.VersionControl.GithubError — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.VersionControl.GithubError exception
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.VersionControl.GithubToken.html b/Lightning.VersionControl.GithubToken.html
index 5667d5a430..cde466a621 100644
--- a/Lightning.VersionControl.GithubToken.html
+++ b/Lightning.VersionControl.GithubToken.html
@@ -5,15 +5,15 @@
-
+
- Lightning.VersionControl.GithubToken — Lightning v0.10.5
+ Lightning.VersionControl.GithubToken — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.VersionControl.GithubToken
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.VersionControl.ProjectRepoConnection.html b/Lightning.VersionControl.ProjectRepoConnection.html
index af3f8ed302..06e1505d5e 100644
--- a/Lightning.VersionControl.ProjectRepoConnection.html
+++ b/Lightning.VersionControl.ProjectRepoConnection.html
@@ -5,15 +5,15 @@
-
+
- Lightning.VersionControl.ProjectRepoConnection — Lightning v0.10.5
+ Lightning.VersionControl.ProjectRepoConnection — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.VersionControl.ProjectRepoConnection
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.VersionControl.html b/Lightning.VersionControl.html
index ea00752172..ce8e176f3a 100644
--- a/Lightning.VersionControl.html
+++ b/Lightning.VersionControl.html
@@ -5,15 +5,15 @@
-
+
- Lightning.VersionControl — Lightning v0.10.5
+ Lightning.VersionControl — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.VersionControl
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.WebhookAuthMethods.html b/Lightning.WebhookAuthMethods.html
index 07bc890314..f8c9e1f7b6 100644
--- a/Lightning.WebhookAuthMethods.html
+++ b/Lightning.WebhookAuthMethods.html
@@ -5,15 +5,15 @@
-
+
- Lightning.WebhookAuthMethods — Lightning v0.10.5
+ Lightning.WebhookAuthMethods — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.WebhookAuthMethods
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
@@ -347,15 +347,15 @@ create_auth_method(attrs, list)
Examples
-Creating a WebhookAuthMethod
without an associated trigger:
iex> create_auth_method(%{valid_attributes}, actor: %User{})
-{:ok, %WebhookAuthMethod{}}
+Creating a WebhookAuthMethod
without an associated trigger:
iex> create_auth_method(%{valid_attributes}, actor: %User{})
+{:ok, %WebhookAuthMethod{}}
-iex> create_auth_method(%{invalid_attributes}, actor: %User{})
-{:error, %Ecto.Changeset{}}
Creating a WebhookAuthMethod
with an associated trigger:
iex> create_auth_method(%Trigger{}, %{valid_attributes}, actor: %User{})
-{:ok, %WebhookAuthMethod{}}
+iex> create_auth_method(%{invalid_attributes}, actor: %User{})
+{:error, %Ecto.Changeset{}}
Creating a WebhookAuthMethod
with an associated trigger:
iex> create_auth_method(%Trigger{}, %{valid_attributes}, actor: %User{})
+{:ok, %WebhookAuthMethod{}}
-iex> create_auth_method(%Trigger{}, %{invalid_attributes}, actor: %User{})
-{:error, %Ecto.Changeset{}}
+
iex> create_auth_method(%Trigger{}, %{invalid_attributes}, actor: %User{})
+{:error, %Ecto.Changeset{}}
@@ -440,9 +440,9 @@ create_changeset(webhook_auth_method, param
Examples
-Creating a changeset for an API type auth method:
iex> Lightning.Workflows.create_changeset(%WebhookAuthMethod{auth_type: :api}, %{})
-%WebhookAuthMethod{api_key: some_new_api_key}
Creating a changeset for a non-API type auth method:
iex> Lightning.Workflows.create_changeset(%WebhookAuthMethod{auth_type: :other}, %{})
-%WebhookAuthMethod{}
+Creating a changeset for an API type auth method:
iex> Lightning.Workflows.create_changeset(%WebhookAuthMethod{auth_type: :api}, %{})
+%WebhookAuthMethod{api_key: some_new_api_key}
Creating a changeset for a non-API type auth method:
iex> Lightning.Workflows.create_changeset(%WebhookAuthMethod{auth_type: :other}, %{})
+%WebhookAuthMethod{}
@@ -490,9 +490,9 @@ delete_auth_method(auth_method)
Examples
-Successful deletion:
iex> delete_auth_method(%WebhookAuthMethod{id: "some_id"})
-{:ok, %WebhookAuthMethod{}}
Deletion fails due to the item not existing or other conflict:
iex> delete_auth_method(%WebhookAuthMethod{id: "non_existing_id"})
-{:error, reason}
+Successful deletion:
iex> delete_auth_method(%WebhookAuthMethod{id: "some_id"})
+{:ok, %WebhookAuthMethod{}}
Deletion fails due to the item not existing or other conflict:
iex> delete_auth_method(%WebhookAuthMethod{id: "non_existing_id"})
+{:error, reason}
@@ -545,8 +545,8 @@ find_by_api_key(api_key, project)
Examples
-When a matching WebhookAuthMethod
is found:
iex> Lightning.Workflows.find_by_api_key("existing_api_key", %Project{id: "existing_project_id"})
-%WebhookAuthMethod{}
When there is no matching WebhookAuthMethod
:
iex> Lightning.Workflows.find_by_api_key("non_existing_api_key", %Project{id: "existing_project_id"})
+When a matching WebhookAuthMethod
is found:
iex> Lightning.Workflows.find_by_api_key("existing_api_key", %Project{id: "existing_project_id"})
+%WebhookAuthMethod{}
When there is no matching WebhookAuthMethod
:
iex> Lightning.Workflows.find_by_api_key("non_existing_api_key", %Project{id: "existing_project_id"})
nil
@@ -599,8 +599,8 @@ find_by_id!(id)
Examples
-When a WebhookAuthMethod
with the given ID exists:
iex> Lightning.Workflows.find_by_id!("existing_id")
-%WebhookAuthMethod{}
When there is no WebhookAuthMethod
with the given ID:
iex> Lightning.Workflows.find_by_id!("non_existing_id")
+When a WebhookAuthMethod
with the given ID exists:
iex> Lightning.Workflows.find_by_id!("existing_id")
+%WebhookAuthMethod{}
When there is no WebhookAuthMethod
with the given ID:
iex> Lightning.Workflows.find_by_id!("non_existing_id")
** (Ecto.NoResultsError)
@@ -652,8 +652,8 @@ find_by_username_and_password(username, pas
Examples
-When a matching WebhookAuthMethod
is found and the password is valid:
iex> Lightning.Workflows.find_by_username_and_password("existing_username", "valid_password", %Project{id: "existing_project_id"})
-%WebhookAuthMethod{}
When the username is found but the password is invalid or no matching record is found:
iex> Lightning.Workflows.find_by_username_and_password("existing_username", "invalid_password", %Project{id: "existing_project_id"})
+When a matching WebhookAuthMethod
is found and the password is valid:
iex> Lightning.Workflows.find_by_username_and_password("existing_username", "valid_password", %Project{id: "existing_project_id"})
+%WebhookAuthMethod{}
When the username is found but the password is invalid or no matching record is found:
iex> Lightning.Workflows.find_by_username_and_password("existing_username", "invalid_password", %Project{id: "existing_project_id"})
nil
@@ -702,9 +702,9 @@ list_for_project(project)
Examples
-When the project exists and has associated auth methods:
iex> list_for_project(%Project{id: "existing_project_id"})
-[%WebhookAuthMethod{}, ...]
When the project does not exist or has no associated auth methods:
iex> list_for_project(%Project{id: "non_existing_project_id"})
-[]
+When the project exists and has associated auth methods:
iex> list_for_project(%Project{id: "existing_project_id"})
+[%WebhookAuthMethod{}, ...]
When the project does not exist or has no associated auth methods:
iex> list_for_project(%Project{id: "non_existing_project_id"})
+[]
@@ -752,9 +752,9 @@ list_for_trigger(trigger)
Examples
-When the Trigger
has associated WebhookAuthMethod
s not scheduled for deletion:
iex> Lightning.Workflows.list_for_trigger(%Trigger{id: "existing_trigger_id"})
-[%WebhookAuthMethod{}, ...]
When the Trigger
has no associated WebhookAuthMethod
s or they are all scheduled for deletion:
iex> Lightning.Workflows.list_for_trigger(%Trigger{id: "trigger_without_methods"})
-[]
+When the Trigger
has associated WebhookAuthMethod
s not scheduled for deletion:
iex> Lightning.Workflows.list_for_trigger(%Trigger{id: "existing_trigger_id"})
+[%WebhookAuthMethod{}, ...]
When the Trigger
has no associated WebhookAuthMethod
s or they are all scheduled for deletion:
iex> Lightning.Workflows.list_for_trigger(%Trigger{id: "trigger_without_methods"})
+[]
@@ -807,10 +807,10 @@ perform(job)
Example
-%Oban.Job{
-args: %{"type" => "purge_deleted"}
-}
-|> MyModule.perform()
+%Oban.Job{
+args: %{"type" => "purge_deleted"}
+}
+|> MyModule.perform()
# => {:ok, %{disassociated_count: 2, deleted_count: 2}}
@@ -864,9 +864,9 @@ schedule_for_deletion(webhook_auth_method,
Examples
-When a webhook auth method is successfully scheduled for deletion:
iex> Lightning.Workflows.schedule_for_deletion(%WebhookAuthMethod{id: some_id})
-{:ok, %WebhookAuthMethod{scheduled_deletion: deletion_date}}
When scheduling for deletion fails due to validation errors:
iex> Lightning.Workflows.schedule_for_deletion(%WebhookAuthMethod{})
-{:error, %Ecto.Changeset{}}
+When a webhook auth method is successfully scheduled for deletion:
iex> Lightning.Workflows.schedule_for_deletion(%WebhookAuthMethod{id: some_id})
+{:ok, %WebhookAuthMethod{scheduled_deletion: deletion_date}}
When scheduling for deletion fails due to validation errors:
iex> Lightning.Workflows.schedule_for_deletion(%WebhookAuthMethod{})
+{:error, %Ecto.Changeset{}}
@@ -916,9 +916,9 @@ update_auth_method(webhook_auth_method, att
Examples
-Successful update:
iex> update_auth_method(webhook_auth_method, %{field: new_value}, actor: %User{})
-{:ok, %WebhookAuthMethod{}}
Update fails due to invalid data:
iex> update_auth_method(webhook_auth_method, %{field: bad_value}, actor: %User{})
-{:error, %Ecto.Changeset{}}
+Successful update:
iex> update_auth_method(webhook_auth_method, %{field: new_value}, actor: %User{})
+{:ok, %WebhookAuthMethod{}}
Update fails due to invalid data:
iex> update_auth_method(webhook_auth_method, %{field: bad_value}, actor: %User{})
+{:error, %Ecto.Changeset{}}
@@ -974,9 +974,9 @@ update_trigger_auth_methods(trigger, auth_m
Examples
-Successful association update:
iex> update_trigger_auth_methods(trigger, [webhook_auth_method], actor: %User{})
-{:ok, %Trigger{}}
Update fails due to an invalid changeset:
iex> update_trigger_auth_methods(trigger, [invalid_webhook_auth_method], actor: %User{})
-{:error, %Ecto.Changeset{}}
+Successful association update:
iex> update_trigger_auth_methods(trigger, [webhook_auth_method], actor: %User{})
+{:ok, %Trigger{}}
Update fails due to an invalid changeset:
iex> update_trigger_auth_methods(trigger, [invalid_webhook_auth_method], actor: %User{})
+{:error, %Ecto.Changeset{}}
diff --git a/Lightning.WorkOrder.html b/Lightning.WorkOrder.html
index 18dbe54afe..29797b33c5 100644
--- a/Lightning.WorkOrder.html
+++ b/Lightning.WorkOrder.html
@@ -5,15 +5,15 @@
-
+
- Lightning.WorkOrder — Lightning v0.10.5
+ Lightning.WorkOrder — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.WorkOrder
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.WorkOrderService.html b/Lightning.WorkOrderService.html
index 6355577b20..7be8524e08 100644
--- a/Lightning.WorkOrderService.html
+++ b/Lightning.WorkOrderService.html
@@ -5,15 +5,15 @@
-
+
- Lightning.WorkOrderService — Lightning v0.10.5
+ Lightning.WorkOrderService — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.WorkOrderService
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
@@ -241,11 +241,11 @@ create_work_order(attrs \\ %{})
Examples
-iex> create_work_order(%{field: value})
-{:ok, %WorkOrder{}}
+iex> create_work_order(%{field: value})
+{:ok, %WorkOrder{}}
-iex> create_work_order(%{field: bad_value})
-{:error, %Ecto.Changeset{}}
+iex> create_work_order(%{field: bad_value})
+{:error, %Ecto.Changeset{}}
diff --git a/Lightning.WorkOrders.Manual.html b/Lightning.WorkOrders.Manual.html
index 8da60c2a4b..ce363924e6 100644
--- a/Lightning.WorkOrders.Manual.html
+++ b/Lightning.WorkOrders.Manual.html
@@ -5,15 +5,15 @@
-
+
- Lightning.WorkOrders.Manual — Lightning v0.10.5
+ Lightning.WorkOrders.Manual — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.WorkOrders.Manual
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.WorkOrders.Query.html b/Lightning.WorkOrders.Query.html
index 97ab0d87be..0ed4b090fd 100644
--- a/Lightning.WorkOrders.Query.html
+++ b/Lightning.WorkOrders.Query.html
@@ -5,15 +5,15 @@
-
+
- Lightning.WorkOrders.Query — Lightning v0.10.5
+ Lightning.WorkOrders.Query — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.WorkOrders.Query
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.WorkOrders.SearchParams.html b/Lightning.WorkOrders.SearchParams.html
index be3d25b765..c59ccc297f 100644
--- a/Lightning.WorkOrders.SearchParams.html
+++ b/Lightning.WorkOrders.SearchParams.html
@@ -5,15 +5,15 @@
-
+
- Lightning.WorkOrders.SearchParams — Lightning v0.10.5
+ Lightning.WorkOrders.SearchParams — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.WorkOrders.SearchParams
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.WorkOrders.html b/Lightning.WorkOrders.html
index b7b5c99236..f6061b56c2 100644
--- a/Lightning.WorkOrders.html
+++ b/Lightning.WorkOrders.html
@@ -5,15 +5,15 @@
-
+
- Lightning.WorkOrders — Lightning v0.10.5
+ Lightning.WorkOrders — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.WorkOrders
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
@@ -403,7 +403,7 @@ create_for(trigger, opts)
-Create a new Work Order.
For a webhook
create_for(trigger, workflow: workflow, dataclip: dataclip)
For a user
create_for(job, workflow: workflow, dataclip: dataclip, user: user)
+Create a new Work Order.
For a webhook
create_for(trigger, workflow: workflow, dataclip: dataclip)
For a user
create_for(job, workflow: workflow, dataclip: dataclip, user: user)
@@ -433,7 +433,7 @@ get(id, opts \\ [])
-Get a Work Order by id.
Optionally preload associations by passing a list of atoms to :include
.
Lightning.WorkOrders.get(id, include: [:attempts])
+Get a Work Order by id.
Optionally preload associations by passing a list of atoms to :include
.
Lightning.WorkOrders.get(id, include: [:attempts])
diff --git a/Lightning.Workers.AttemptToken.html b/Lightning.Workers.AttemptToken.html
index 787f8a57d0..6791bfb021 100644
--- a/Lightning.Workers.AttemptToken.html
+++ b/Lightning.Workers.AttemptToken.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Workers.AttemptToken — Lightning v0.10.5
+ Lightning.Workers.AttemptToken — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Workers.AttemptToken
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Workers.Token.html b/Lightning.Workers.Token.html
index a911c964ea..4f73e7b665 100644
--- a/Lightning.Workers.Token.html
+++ b/Lightning.Workers.Token.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Workers.Token — Lightning v0.10.5
+ Lightning.Workers.Token — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Workers.Token
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Workers.html b/Lightning.Workers.html
index 978d8106f5..991c8c65dd 100644
--- a/Lightning.Workers.html
+++ b/Lightning.Workers.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Workers — Lightning v0.10.5
+ Lightning.Workers — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Workers
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Workflows.Edge.html b/Lightning.Workflows.Edge.html
index fea687b375..b3089f9e2f 100644
--- a/Lightning.Workflows.Edge.html
+++ b/Lightning.Workflows.Edge.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Workflows.Edge — Lightning v0.10.5
+ Lightning.Workflows.Edge — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Workflows.Edge
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Workflows.Job.html b/Lightning.Workflows.Job.html
index 8c009d1f5e..edb932c2b1 100644
--- a/Lightning.Workflows.Job.html
+++ b/Lightning.Workflows.Job.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Workflows.Job — Lightning v0.10.5
+ Lightning.Workflows.Job — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Workflows.Job
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
@@ -355,17 +355,17 @@ put_workflow(changeset, workflow)
Attaches a workflow to a job, this is useful when you have an unpersisted
Workflow changeset - and want it to be created at the same time as a Job.
Example:
workflow =
- Ecto.Changeset.cast(
- %Lightning.Workflows.Workflow{},
- %{ "project_id" => attrs[:project_id], "id" => Ecto.UUID.generate() },
- [:project_id, :id]
- )
+ Ecto.Changeset.cast(
+ %Lightning.Workflows.Workflow{},
+ %{ "project_id" => attrs[:project_id], "id" => Ecto.UUID.generate() },
+ [:project_id, :id]
+ )
job =
- %Job{}
- |> Ecto.Changeset.change()
- |> Job.put_workflow(workflow)
- |> Job.changeset(attrs)
+
%Job{}
+ |> Ecto.Changeset.change()
+ |> Job.put_workflow(workflow)
+ |> Job.changeset(attrs)
diff --git a/Lightning.Workflows.Node.html b/Lightning.Workflows.Node.html
index edfa34a1fd..3ed23901ff 100644
--- a/Lightning.Workflows.Node.html
+++ b/Lightning.Workflows.Node.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Workflows.Node — Lightning v0.10.5
+ Lightning.Workflows.Node — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Workflows.Node
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Workflows.Query.html b/Lightning.Workflows.Query.html
index 8e494ece90..9a88173334 100644
--- a/Lightning.Workflows.Query.html
+++ b/Lightning.Workflows.Query.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Workflows.Query — Lightning v0.10.5
+ Lightning.Workflows.Query — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Workflows.Query
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Workflows.Scheduler.html b/Lightning.Workflows.Scheduler.html
index 68dcebea70..f5388d8499 100644
--- a/Lightning.Workflows.Scheduler.html
+++ b/Lightning.Workflows.Scheduler.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Workflows.Scheduler — Lightning v0.10.5
+ Lightning.Workflows.Scheduler — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Workflows.Scheduler
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Workflows.Trigger.html b/Lightning.Workflows.Trigger.html
index be93738cb4..0d858466fd 100644
--- a/Lightning.Workflows.Trigger.html
+++ b/Lightning.Workflows.Trigger.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Workflows.Trigger — Lightning v0.10.5
+ Lightning.Workflows.Trigger — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Workflows.Trigger
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Workflows.WebhookAuthMethod.html b/Lightning.Workflows.WebhookAuthMethod.html
index a8d81fbb90..36a67dc9e9 100644
--- a/Lightning.Workflows.WebhookAuthMethod.html
+++ b/Lightning.Workflows.WebhookAuthMethod.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Workflows.WebhookAuthMethod — Lightning v0.10.5
+ Lightning.Workflows.WebhookAuthMethod — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Workflows.WebhookAuthMethod
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Workflows.WebhookAuthMethodAudit.html b/Lightning.Workflows.WebhookAuthMethodAudit.html
index 996353b1de..79fed71337 100644
--- a/Lightning.Workflows.WebhookAuthMethodAudit.html
+++ b/Lightning.Workflows.WebhookAuthMethodAudit.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Workflows.WebhookAuthMethodAudit — Lightning v0.10.5
+ Lightning.Workflows.WebhookAuthMethodAudit — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Workflows.WebhookAuthMethodAudit
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Workflows.Workflow.html b/Lightning.Workflows.Workflow.html
index c5bc0a3c6b..7b0f6eac55 100644
--- a/Lightning.Workflows.Workflow.html
+++ b/Lightning.Workflows.Workflow.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Workflows.Workflow — Lightning v0.10.5
+ Lightning.Workflows.Workflow — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Workflows.Workflow
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Lightning.Workflows.html b/Lightning.Workflows.html
index c0d479ff9e..cb124ebae7 100644
--- a/Lightning.Workflows.html
+++ b/Lightning.Workflows.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Workflows — Lightning v0.10.5
+ Lightning.Workflows — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning.Workflows
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
@@ -401,8 +401,8 @@ change_workflow(workflow, attrs \\ %{})
Examples
-
iex> change_workflow(workflow)
-%Ecto.Changeset{data: %Workflow{}}
+iex> change_workflow(workflow)
+%Ecto.Changeset{data: %Workflow{}}
@@ -454,11 +454,11 @@ create_workflow(attrs \\ %{})
Examples
-iex> create_workflow(%{field: value})
-{:ok, %Workflow{}}
+iex> create_workflow(%{field: value})
+{:ok, %Workflow{}}
-iex> create_workflow(%{field: bad_value})
-{:error, %Ecto.Changeset{}}
+iex> create_workflow(%{field: bad_value})
+{:error, %Ecto.Changeset{}}
@@ -498,12 +498,12 @@ get_edge_by_trigger(trigger)
Examples
-trigger = %Trigger{id: 1, ...}
-Lightning.Workflows.get_edge_by_trigger(trigger)
+trigger = %Trigger{id: 1, ...}
+Lightning.Workflows.get_edge_by_trigger(trigger)
# => %Edge{source_trigger: %Trigger{}, target_job: %Job{}, ...}
-non_existent_trigger = %Trigger{id: 999, ...}
-Lightning.Workflows.get_edge_by_trigger(non_existent_trigger)
+non_existent_trigger = %Trigger{id: 999, ...}
+Lightning.Workflows.get_edge_by_trigger(non_existent_trigger)
# => nil
@@ -573,10 +573,10 @@ get_trigger_by_webhook(path)
Examples
-Lightning.Workflows.get_trigger_by_webhook("some_path_or_id")
+Lightning.Workflows.get_trigger_by_webhook("some_path_or_id")
# => %Trigger{id: 1, custom_path: "some_path_or_id", ...}
-Lightning.Workflows.get_trigger_by_webhook("non_existent_path_or_id")
+Lightning.Workflows.get_trigger_by_webhook("non_existent_path_or_id")
# => nil
@@ -651,10 +651,10 @@ get_workflow!(id)
Examples
-iex> get_workflow!(123)
-%Workflow{}
+iex> get_workflow!(123)
+%Workflow{}
-iex> get_workflow!(456)
+iex> get_workflow!(456)
** (Ecto.NoResultsError)
@@ -758,8 +758,8 @@ list_workflows()
Examples
-iex> list_workflows()
-[%Workflow{}, ...]
+iex> list_workflows()
+[%Workflow{}, ...]
@@ -789,8 +789,8 @@ mark_for_deletion(workflow, attrs \\ %{})
Examples
-iex> change_request_deletion(workflow)
-%Ecto.Changeset{data: %Workflow{}}
+iex> change_request_deletion(workflow)
+%Ecto.Changeset{data: %Workflow{}}
@@ -868,11 +868,11 @@ update_workflow(workflow, attrs)
Examples
-iex> update_workflow(workflow, %{field: new_value})
-{:ok, %Workflow{}}
+iex> update_workflow(workflow, %{field: new_value})
+{:ok, %Workflow{}}
-iex> update_workflow(workflow, %{field: bad_value})
-{:error, %Ecto.Changeset{}}
+iex> update_workflow(workflow, %{field: bad_value})
+{:error, %Ecto.Changeset{}}
diff --git a/Lightning.epub b/Lightning.epub
index cd5082250f..7638ad6c8b 100644
Binary files a/Lightning.epub and b/Lightning.epub differ
diff --git a/Lightning.html b/Lightning.html
index c779e9cde8..95c9ee534e 100644
--- a/Lightning.html
+++ b/Lightning.html
@@ -5,15 +5,15 @@
-
+
- Lightning — Lightning v0.10.5
+ Lightning — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
Lightning
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.API.Helpers.html b/LightningWeb.API.Helpers.html
index c677dd63ef..120615977d 100644
--- a/LightningWeb.API.Helpers.html
+++ b/LightningWeb.API.Helpers.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.API.Helpers — Lightning v0.10.5
+ LightningWeb.API.Helpers — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.API.Helpers
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.API.JobController.html b/LightningWeb.API.JobController.html
index 1845e5b128..6fdeb2ecc5 100644
--- a/LightningWeb.API.JobController.html
+++ b/LightningWeb.API.JobController.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.API.JobController — Lightning v0.10.5
+ LightningWeb.API.JobController — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.API.JobController
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.API.ProjectController.html b/LightningWeb.API.ProjectController.html
index efb4843480..8ac986da17 100644
--- a/LightningWeb.API.ProjectController.html
+++ b/LightningWeb.API.ProjectController.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.API.ProjectController — Lightning v0.10.5
+ LightningWeb.API.ProjectController — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.API.ProjectController
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.API.ProvisioningController.html b/LightningWeb.API.ProvisioningController.html
index e291876755..88a1e2420a 100644
--- a/LightningWeb.API.ProvisioningController.html
+++ b/LightningWeb.API.ProvisioningController.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.API.ProvisioningController — Lightning v0.10.5
+ LightningWeb.API.ProvisioningController — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.API.ProvisioningController
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.API.RunController.html b/LightningWeb.API.RunController.html
index e23513900f..ec78db1353 100644
--- a/LightningWeb.API.RunController.html
+++ b/LightningWeb.API.RunController.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.API.RunController — Lightning v0.10.5
+ LightningWeb.API.RunController — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.API.RunController
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.AttemptChannel.html b/LightningWeb.AttemptChannel.html
index ec63226186..4e34765bce 100644
--- a/LightningWeb.AttemptChannel.html
+++ b/LightningWeb.AttemptChannel.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.AttemptChannel — Lightning v0.10.5
+ LightningWeb.AttemptChannel — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.AttemptChannel
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.AttemptLive.AttemptViewerLive.html b/LightningWeb.AttemptLive.AttemptViewerLive.html
index 247eb1d30f..728e3f5e6b 100644
--- a/LightningWeb.AttemptLive.AttemptViewerLive.html
+++ b/LightningWeb.AttemptLive.AttemptViewerLive.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.AttemptLive.AttemptViewerLive — Lightning v0.10.5
+ LightningWeb.AttemptLive.AttemptViewerLive — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.AttemptLive.AttemptViewerLive
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.AttemptLive.Components.html b/LightningWeb.AttemptLive.Components.html
index 99d4c1f217..724d3c90eb 100644
--- a/LightningWeb.AttemptLive.Components.html
+++ b/LightningWeb.AttemptLive.Components.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.AttemptLive.Components — Lightning v0.10.5
+ LightningWeb.AttemptLive.Components — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.AttemptLive.Components
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.AttemptLive.Show.html b/LightningWeb.AttemptLive.Show.html
index 8df87f6fb4..77444d1445 100644
--- a/LightningWeb.AttemptLive.Show.html
+++ b/LightningWeb.AttemptLive.Show.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.AttemptLive.Show — Lightning v0.10.5
+ LightningWeb.AttemptLive.Show — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.AttemptLive.Show
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.AuditLive.Index.html b/LightningWeb.AuditLive.Index.html
index 480e05c931..bc9ce66434 100644
--- a/LightningWeb.AuditLive.Index.html
+++ b/LightningWeb.AuditLive.Index.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.AuditLive.Index — Lightning v0.10.5
+ LightningWeb.AuditLive.Index — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.AuditLive.Index
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.AuthProvidersLive.FormComponent.html b/LightningWeb.AuthProvidersLive.FormComponent.html
index be72af1b5b..360773d4cf 100644
--- a/LightningWeb.AuthProvidersLive.FormComponent.html
+++ b/LightningWeb.AuthProvidersLive.FormComponent.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.AuthProvidersLive.FormComponent — Lightning v0.10.5
+ LightningWeb.AuthProvidersLive.FormComponent — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.AuthProvidersLive.FormComponent
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.AuthProvidersLive.Index.html b/LightningWeb.AuthProvidersLive.Index.html
index 90d1336027..5bbcc30917 100644
--- a/LightningWeb.AuthProvidersLive.Index.html
+++ b/LightningWeb.AuthProvidersLive.Index.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.AuthProvidersLive.Index — Lightning v0.10.5
+ LightningWeb.AuthProvidersLive.Index — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.AuthProvidersLive.Index
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.BackupCodesController.html b/LightningWeb.BackupCodesController.html
index f76fbef6a6..de80b9f26b 100644
--- a/LightningWeb.BackupCodesController.html
+++ b/LightningWeb.BackupCodesController.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.BackupCodesController — Lightning v0.10.5
+ LightningWeb.BackupCodesController — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.BackupCodesController
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.BackupCodesLive.Index.html b/LightningWeb.BackupCodesLive.Index.html
index 27ca11c202..925517db8e 100644
--- a/LightningWeb.BackupCodesLive.Index.html
+++ b/LightningWeb.BackupCodesLive.Index.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.BackupCodesLive.Index — Lightning v0.10.5
+ LightningWeb.BackupCodesLive.Index — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.BackupCodesLive.Index
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.ChangesetJSON.html b/LightningWeb.ChangesetJSON.html
index 7002ac00d3..5ae3c3468c 100644
--- a/LightningWeb.ChangesetJSON.html
+++ b/LightningWeb.ChangesetJSON.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.ChangesetJSON — Lightning v0.10.5
+ LightningWeb.ChangesetJSON — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.ChangesetJSON
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.ChangesetView.html b/LightningWeb.ChangesetView.html
index 0a68940470..3d44b12768 100644
--- a/LightningWeb.ChangesetView.html
+++ b/LightningWeb.ChangesetView.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.ChangesetView — Lightning v0.10.5
+ LightningWeb.ChangesetView — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.ChangesetView
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.Components.Modal.html b/LightningWeb.Components.Modal.html
index 2f91edc342..ceb9f4616e 100644
--- a/LightningWeb.Components.Modal.html
+++ b/LightningWeb.Components.Modal.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.Components.Modal — Lightning v0.10.5
+ LightningWeb.Components.Modal — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.Components.Modal
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.Components.NewInputs.html b/LightningWeb.Components.NewInputs.html
index 5b43fcdcfb..77a1fd701d 100644
--- a/LightningWeb.Components.NewInputs.html
+++ b/LightningWeb.Components.NewInputs.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.Components.NewInputs — Lightning v0.10.5
+ LightningWeb.Components.NewInputs — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.Components.NewInputs
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
@@ -379,8 +379,8 @@ input(assigns)
Examples
-
<.input field={@form[:email]} type="email" />
-<.input name="my-input" errors={["oh no!"]} />
+<.input field={@form[:email]} type="email" />
+<.input name="my-input" errors={["oh no!"]} />
diff --git a/LightningWeb.Components.Pills.html b/LightningWeb.Components.Pills.html
index 6f8a52b87e..36b441ad07 100644
--- a/LightningWeb.Components.Pills.html
+++ b/LightningWeb.Components.Pills.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.Components.Pills — Lightning v0.10.5
+ LightningWeb.Components.Pills — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.Components.Pills
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.Components.Viewers.html b/LightningWeb.Components.Viewers.html
index ded69e0ea0..5470b5b079 100644
--- a/LightningWeb.Components.Viewers.html
+++ b/LightningWeb.Components.Viewers.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.Components.Viewers — Lightning v0.10.5
+ LightningWeb.Components.Viewers — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.Components.Viewers
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
@@ -245,8 +245,8 @@ log_viewer(assigns)
<Viewers.log_viewer
id="log-viewer-data"
- stream={@log_lines}
- highlight_id={@selected_run_id}
+ stream={@log_lines}
+ highlight_id={@selected_run_id}
/>
diff --git a/LightningWeb.CredentialLive.Edit.html b/LightningWeb.CredentialLive.Edit.html
index de4de1bc55..7821716588 100644
--- a/LightningWeb.CredentialLive.Edit.html
+++ b/LightningWeb.CredentialLive.Edit.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.CredentialLive.Edit — Lightning v0.10.5
+ LightningWeb.CredentialLive.Edit — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.CredentialLive.Edit
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.CredentialLive.FormComponent.html b/LightningWeb.CredentialLive.FormComponent.html
index dea9d04ce1..3385d0e4a5 100644
--- a/LightningWeb.CredentialLive.FormComponent.html
+++ b/LightningWeb.CredentialLive.FormComponent.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.CredentialLive.FormComponent — Lightning v0.10.5
+ LightningWeb.CredentialLive.FormComponent — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.CredentialLive.FormComponent
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.CredentialLive.GoogleSheetsComponent.html b/LightningWeb.CredentialLive.GoogleSheetsComponent.html
index 03191e794a..f2646bfa87 100644
--- a/LightningWeb.CredentialLive.GoogleSheetsComponent.html
+++ b/LightningWeb.CredentialLive.GoogleSheetsComponent.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.CredentialLive.GoogleSheetsComponent — Lightning v0.10.5
+ LightningWeb.CredentialLive.GoogleSheetsComponent — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.CredentialLive.GoogleSheetsComponent
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.CredentialLive.Index.html b/LightningWeb.CredentialLive.Index.html
index d15e7ec1c5..5560e028e7 100644
--- a/LightningWeb.CredentialLive.Index.html
+++ b/LightningWeb.CredentialLive.Index.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.CredentialLive.Index — Lightning v0.10.5
+ LightningWeb.CredentialLive.Index — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.CredentialLive.Index
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.CredentialLive.JsonSchemaBodyComponent.html b/LightningWeb.CredentialLive.JsonSchemaBodyComponent.html
index 387d1ae45a..105e5ba006 100644
--- a/LightningWeb.CredentialLive.JsonSchemaBodyComponent.html
+++ b/LightningWeb.CredentialLive.JsonSchemaBodyComponent.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.CredentialLive.JsonSchemaBodyComponent — Lightning v0.10.5
+ LightningWeb.CredentialLive.JsonSchemaBodyComponent — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.CredentialLive.JsonSchemaBodyComponent
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.CredentialLive.RawBodyComponent.html b/LightningWeb.CredentialLive.RawBodyComponent.html
index 8039e8d95b..4ea77a3d80 100644
--- a/LightningWeb.CredentialLive.RawBodyComponent.html
+++ b/LightningWeb.CredentialLive.RawBodyComponent.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.CredentialLive.RawBodyComponent — Lightning v0.10.5
+ LightningWeb.CredentialLive.RawBodyComponent — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.CredentialLive.RawBodyComponent
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.CredentialLive.TypePicker.html b/LightningWeb.CredentialLive.TypePicker.html
index 41d1c2d910..da335cab58 100644
--- a/LightningWeb.CredentialLive.TypePicker.html
+++ b/LightningWeb.CredentialLive.TypePicker.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.CredentialLive.TypePicker — Lightning v0.10.5
+ LightningWeb.CredentialLive.TypePicker — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.CredentialLive.TypePicker
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.DataclipLive.Edit.html b/LightningWeb.DataclipLive.Edit.html
index 9367a44502..b4622f61e4 100644
--- a/LightningWeb.DataclipLive.Edit.html
+++ b/LightningWeb.DataclipLive.Edit.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.DataclipLive.Edit — Lightning v0.10.5
+ LightningWeb.DataclipLive.Edit — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.DataclipLive.Edit
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.DataclipLive.FormComponent.html b/LightningWeb.DataclipLive.FormComponent.html
index 870d56e728..787bf622a8 100644
--- a/LightningWeb.DataclipLive.FormComponent.html
+++ b/LightningWeb.DataclipLive.FormComponent.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.DataclipLive.FormComponent — Lightning v0.10.5
+ LightningWeb.DataclipLive.FormComponent — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.DataclipLive.FormComponent
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.DataclipLive.Index.html b/LightningWeb.DataclipLive.Index.html
index 9eef6f4b04..c914db1617 100644
--- a/LightningWeb.DataclipLive.Index.html
+++ b/LightningWeb.DataclipLive.Index.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.DataclipLive.Index — Lightning v0.10.5
+ LightningWeb.DataclipLive.Index — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.DataclipLive.Index
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.DownloadsController.html b/LightningWeb.DownloadsController.html
index 53afce0c75..99742bf91f 100644
--- a/LightningWeb.DownloadsController.html
+++ b/LightningWeb.DownloadsController.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.DownloadsController — Lightning v0.10.5
+ LightningWeb.DownloadsController — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.DownloadsController
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.Endpoint.html b/LightningWeb.Endpoint.html
index 6bb062812c..eff60d1cf2 100644
--- a/LightningWeb.Endpoint.html
+++ b/LightningWeb.Endpoint.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.Endpoint — Lightning v0.10.5
+ LightningWeb.Endpoint — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.Endpoint
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.ErrorView.html b/LightningWeb.ErrorView.html
index a1dbe9e191..1b3147b957 100644
--- a/LightningWeb.ErrorView.html
+++ b/LightningWeb.ErrorView.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.ErrorView — Lightning v0.10.5
+ LightningWeb.ErrorView — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.ErrorView
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.FallbackController.html b/LightningWeb.FallbackController.html
index 420608daee..ae205101f7 100644
--- a/LightningWeb.FallbackController.html
+++ b/LightningWeb.FallbackController.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.FallbackController — Lightning v0.10.5
+ LightningWeb.FallbackController — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.FallbackController
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.FirstSetupLive.Superuser.html b/LightningWeb.FirstSetupLive.Superuser.html
index f2bd4c7966..f40707448b 100644
--- a/LightningWeb.FirstSetupLive.Superuser.html
+++ b/LightningWeb.FirstSetupLive.Superuser.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.FirstSetupLive.Superuser — Lightning v0.10.5
+ LightningWeb.FirstSetupLive.Superuser — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.FirstSetupLive.Superuser
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.FormHelpers.html b/LightningWeb.FormHelpers.html
index 0e6fefc09c..0a00523823 100644
--- a/LightningWeb.FormHelpers.html
+++ b/LightningWeb.FormHelpers.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.FormHelpers — Lightning v0.10.5
+ LightningWeb.FormHelpers — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.FormHelpers
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.Gettext.html b/LightningWeb.Gettext.html
index b5394ea5dd..6efbafd957 100644
--- a/LightningWeb.Gettext.html
+++ b/LightningWeb.Gettext.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.Gettext — Lightning v0.10.5
+ LightningWeb.Gettext — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.Gettext
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
@@ -141,15 +141,15 @@
your module gains a set of macros for translations, for example:import LightningWeb.Gettext
# Simple translation
-gettext("Here is the string to translate")
+gettext("Here is the string to translate")
# Plural translation
-ngettext("Here is the string to translate",
+ngettext("Here is the string to translate",
"Here are the strings to translate",
- 3)
+ 3)
# Domain-based translation
-dgettext("errors", "Here is the error message to translate")
See the Gettext Docs for detailed usage.
+
dgettext("errors", "Here is the error message to translate")
See the Gettext Docs for detailed usage.
diff --git a/LightningWeb.HealthCheck.html b/LightningWeb.HealthCheck.html
index b53f923529..bb5e3e4f0b 100644
--- a/LightningWeb.HealthCheck.html
+++ b/LightningWeb.HealthCheck.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.HealthCheck — Lightning v0.10.5
+ LightningWeb.HealthCheck — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.HealthCheck
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.Hooks.html b/LightningWeb.Hooks.html
index 75ba39bbf0..8c341d42ee 100644
--- a/LightningWeb.Hooks.html
+++ b/LightningWeb.Hooks.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.Hooks — Lightning v0.10.5
+ LightningWeb.Hooks — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.Hooks
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.InitAssigns.html b/LightningWeb.InitAssigns.html
index f041561884..b4eb801b7a 100644
--- a/LightningWeb.InitAssigns.html
+++ b/LightningWeb.InitAssigns.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.InitAssigns — Lightning v0.10.5
+ LightningWeb.InitAssigns — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.InitAssigns
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.JobLive.AdaptorPicker.html b/LightningWeb.JobLive.AdaptorPicker.html
index 584f6072a3..4d5f57f05f 100644
--- a/LightningWeb.JobLive.AdaptorPicker.html
+++ b/LightningWeb.JobLive.AdaptorPicker.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.JobLive.AdaptorPicker — Lightning v0.10.5
+ LightningWeb.JobLive.AdaptorPicker — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.JobLive.AdaptorPicker
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.JobLive.CredentialPicker.html b/LightningWeb.JobLive.CredentialPicker.html
index 51a1f1143f..a069d15d39 100644
--- a/LightningWeb.JobLive.CredentialPicker.html
+++ b/LightningWeb.JobLive.CredentialPicker.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.JobLive.CredentialPicker — Lightning v0.10.5
+ LightningWeb.JobLive.CredentialPicker — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.JobLive.CredentialPicker
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.JobLive.CronSetupComponent.html b/LightningWeb.JobLive.CronSetupComponent.html
index 0fbd03cac4..a0bfdbf484 100644
--- a/LightningWeb.JobLive.CronSetupComponent.html
+++ b/LightningWeb.JobLive.CronSetupComponent.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.JobLive.CronSetupComponent — Lightning v0.10.5
+ LightningWeb.JobLive.CronSetupComponent — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.JobLive.CronSetupComponent
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.JobLive.JobBuilderComponents.html b/LightningWeb.JobLive.JobBuilderComponents.html
index 67f71c9109..9cf8cdd52f 100644
--- a/LightningWeb.JobLive.JobBuilderComponents.html
+++ b/LightningWeb.JobLive.JobBuilderComponents.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.JobLive.JobBuilderComponents — Lightning v0.10.5
+ LightningWeb.JobLive.JobBuilderComponents — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.JobLive.JobBuilderComponents
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.LiveHelpers.html b/LightningWeb.LiveHelpers.html
index 070de1fd98..9bb882f5be 100644
--- a/LightningWeb.LiveHelpers.html
+++ b/LightningWeb.LiveHelpers.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.LiveHelpers — Lightning v0.10.5
+ LightningWeb.LiveHelpers — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.LiveHelpers
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.ModalPortal.html b/LightningWeb.ModalPortal.html
index 5ec42e7476..394718dc25 100644
--- a/LightningWeb.ModalPortal.html
+++ b/LightningWeb.ModalPortal.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.ModalPortal — Lightning v0.10.5
+ LightningWeb.ModalPortal — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.ModalPortal
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.OauthCredentialHelper.html b/LightningWeb.OauthCredentialHelper.html
index e744379c9e..985c450555 100644
--- a/LightningWeb.OauthCredentialHelper.html
+++ b/LightningWeb.OauthCredentialHelper.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.OauthCredentialHelper — Lightning v0.10.5
+ LightningWeb.OauthCredentialHelper — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.OauthCredentialHelper
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
@@ -261,10 +261,10 @@ broadcast_forward(subscription_id, mod, opt
Broadcast a message specifically for forwarding a message to a component.
It expects a subscription_id
, the module of the component and opts
being a keyword list containing an :id
key of the specific component.
See: Phoenix.LiveView.send_update/3
for more info.
A corresponding LiveView (that is subscribed) is expected to have a matching
-handle_info/2
that looks like this:
def handle_info({:forward, mod, opts}, socket) do
- send_update(mod, opts)
- {:noreply, socket}
-end
+handle_info/2
that looks like this:def handle_info({:forward, mod, opts}, socket) do
+ send_update(mod, opts)
+ {:noreply, socket}
+end
diff --git a/LightningWeb.OidcController.html b/LightningWeb.OidcController.html
index bbd6653e8d..3eff5f3567 100644
--- a/LightningWeb.OidcController.html
+++ b/LightningWeb.OidcController.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.OidcController — Lightning v0.10.5
+ LightningWeb.OidcController — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.OidcController
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.PageView.html b/LightningWeb.PageView.html
index d26a963f29..0db52d5523 100644
--- a/LightningWeb.PageView.html
+++ b/LightningWeb.PageView.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.PageView — Lightning v0.10.5
+ LightningWeb.PageView — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.PageView
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.Pagination.html b/LightningWeb.Pagination.html
index f5284c562c..86a9e9dfa9 100644
--- a/LightningWeb.Pagination.html
+++ b/LightningWeb.Pagination.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.Pagination — Lightning v0.10.5
+ LightningWeb.Pagination — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.Pagination
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
@@ -272,13 +272,13 @@ raw_pagination_links(paginator, options \\
Returns the raw data in order to generate the proper HTML for pagination links. Data
is returned in a {text, page_number}
format where text
is intended to be the text
of the link and page_number
is the page it should go to. Defaults are already supplied
-and they are as follows:
[distance: 5, next: :next, previous: :previous, first: true, last: true, ellipsis: :ellipsis]
distance
must be a positive non-zero integer or an exception is raised. next
and previous
should be
+and they are as follows:
[distance: 5, next: :next, previous: :previous, first: true, last: true, ellipsis: :ellipsis]
distance
must be a positive non-zero integer or an exception is raised. next
and previous
should be
strings but can be anything you want as long as it is truthy, falsey values will remove
them from the output. first
and last
are only booleans, and they just include/remove
-their respective link from output. An example of the data returned:
iex> Scrivener.HTML.raw_pagination_links(%{total_pages: 10, page_number: 5})
-[{"<<", 4}, {1, 1}, {2, 2}, {3, 3}, {4, 4}, {5, 5}, {6, 6}, {7, 7}, {8, 8}, {9, 9}, {10, 10}, {">>", 6}]
-iex> Scrivener.HTML.raw_pagination_links(%{total_pages: 20, page_number: 10}, first: ["←"], last: ["→"])
-[{"<<", 9}, {["←"], 1}, {:ellipsis, {:safe, "…"}}, {5, 5}, {6, 6},{7, 7}, {8, 8}, {9, 9}, {10, 10}, {11, 11}, {12, 12}, {13, 13}, {14, 14},{15, 15}, {:ellipsis, {:safe, "…"}}, {["→"], 20}, {">>", 11}]
Simply loop and pattern match over each item and transform it to your custom HTML.
+their respective link from output. An example of the data returned:iex> Scrivener.HTML.raw_pagination_links(%{total_pages: 10, page_number: 5})
+[{"<<", 4}, {1, 1}, {2, 2}, {3, 3}, {4, 4}, {5, 5}, {6, 6}, {7, 7}, {8, 8}, {9, 9}, {10, 10}, {">>", 6}]
+iex> Scrivener.HTML.raw_pagination_links(%{total_pages: 20, page_number: 10}, first: ["←"], last: ["→"])
+[{"<<", 9}, {["←"], 1}, {:ellipsis, {:safe, "…"}}, {5, 5}, {6, 6},{7, 7}, {8, 8}, {9, 9}, {10, 10}, {11, 11}, {12, 12}, {13, 13}, {14, 14},{15, 15}, {:ellipsis, {:safe, "…"}}, {["→"], 20}, {">>", 11}]
Simply loop and pattern match over each item and transform it to your custom HTML.
diff --git a/LightningWeb.Plugs.FirstSetup.html b/LightningWeb.Plugs.FirstSetup.html
index 9c736c0114..7056dcd312 100644
--- a/LightningWeb.Plugs.FirstSetup.html
+++ b/LightningWeb.Plugs.FirstSetup.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.Plugs.FirstSetup — Lightning v0.10.5
+ LightningWeb.Plugs.FirstSetup — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.Plugs.FirstSetup
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.Plugs.WebhookAuth.html b/LightningWeb.Plugs.WebhookAuth.html
index 6c26790d5d..9c3a5f7a27 100644
--- a/LightningWeb.Plugs.WebhookAuth.html
+++ b/LightningWeb.Plugs.WebhookAuth.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.Plugs.WebhookAuth — Lightning v0.10.5
+ LightningWeb.Plugs.WebhookAuth — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.Plugs.WebhookAuth
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
@@ -247,11 +247,11 @@ call(conn, action)
Webhook Found and Authenticated
-
iex> LightningWeb.Plugs.WebhookAuth.call(conn, [])
-%Plug.Conn{status: 200, ...}
+iex> LightningWeb.Plugs.WebhookAuth.call(conn, [])
+%Plug.Conn{status: 200, ...}
-iex> LightningWeb.Plugs.WebhookAuth.call(conn, [])
-%Plug.Conn{status: 404, ...}
+iex> LightningWeb.Plugs.WebhookAuth.call(conn, [])
+%Plug.Conn{status: 404, ...}
diff --git a/LightningWeb.ProfileLive.Edit.html b/LightningWeb.ProfileLive.Edit.html
index bbf73f7235..63aff0dc37 100644
--- a/LightningWeb.ProfileLive.Edit.html
+++ b/LightningWeb.ProfileLive.Edit.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.ProfileLive.Edit — Lightning v0.10.5
+ LightningWeb.ProfileLive.Edit — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.ProfileLive.Edit
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.ProfileLive.FormComponent.html b/LightningWeb.ProfileLive.FormComponent.html
index 049abb653d..3e5f7bc81c 100644
--- a/LightningWeb.ProfileLive.FormComponent.html
+++ b/LightningWeb.ProfileLive.FormComponent.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.ProfileLive.FormComponent — Lightning v0.10.5
+ LightningWeb.ProfileLive.FormComponent — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.ProfileLive.FormComponent
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.ProfileLive.MfaComponent.html b/LightningWeb.ProfileLive.MfaComponent.html
index c746c6add0..8af5abe4a8 100644
--- a/LightningWeb.ProfileLive.MfaComponent.html
+++ b/LightningWeb.ProfileLive.MfaComponent.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.ProfileLive.MfaComponent — Lightning v0.10.5
+ LightningWeb.ProfileLive.MfaComponent — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.ProfileLive.MfaComponent
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.ProjectLive.FormComponent.html b/LightningWeb.ProjectLive.FormComponent.html
index fd5d40901c..85431d5c64 100644
--- a/LightningWeb.ProjectLive.FormComponent.html
+++ b/LightningWeb.ProjectLive.FormComponent.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.ProjectLive.FormComponent — Lightning v0.10.5
+ LightningWeb.ProjectLive.FormComponent — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.ProjectLive.FormComponent
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.ProjectLive.Index.html b/LightningWeb.ProjectLive.Index.html
index 4340944c55..9eb7459459 100644
--- a/LightningWeb.ProjectLive.Index.html
+++ b/LightningWeb.ProjectLive.Index.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.ProjectLive.Index — Lightning v0.10.5
+ LightningWeb.ProjectLive.Index — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.ProjectLive.Index
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.ProjectLive.MFARequired.html b/LightningWeb.ProjectLive.MFARequired.html
index 62eefa3d5f..bb09ffb795 100644
--- a/LightningWeb.ProjectLive.MFARequired.html
+++ b/LightningWeb.ProjectLive.MFARequired.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.ProjectLive.MFARequired — Lightning v0.10.5
+ LightningWeb.ProjectLive.MFARequired — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.ProjectLive.MFARequired
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.ProjectLive.Settings.html b/LightningWeb.ProjectLive.Settings.html
index 0b78eb6988..c6adccf335 100644
--- a/LightningWeb.ProjectLive.Settings.html
+++ b/LightningWeb.ProjectLive.Settings.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.ProjectLive.Settings — Lightning v0.10.5
+ LightningWeb.ProjectLive.Settings — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.ProjectLive.Settings
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.PromExPlugAuthorization.html b/LightningWeb.PromExPlugAuthorization.html
index 71cc1b6f52..35bd63440f 100644
--- a/LightningWeb.PromExPlugAuthorization.html
+++ b/LightningWeb.PromExPlugAuthorization.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.PromExPlugAuthorization — Lightning v0.10.5
+ LightningWeb.PromExPlugAuthorization — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.PromExPlugAuthorization
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.ReAuthenticateLive.New.html b/LightningWeb.ReAuthenticateLive.New.html
index f5af916901..5b645ca37c 100644
--- a/LightningWeb.ReAuthenticateLive.New.html
+++ b/LightningWeb.ReAuthenticateLive.New.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.ReAuthenticateLive.New — Lightning v0.10.5
+ LightningWeb.ReAuthenticateLive.New — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.ReAuthenticateLive.New
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.RouteHelpers.html b/LightningWeb.RouteHelpers.html
index 865dcbbd82..4abfe81744 100644
--- a/LightningWeb.RouteHelpers.html
+++ b/LightningWeb.RouteHelpers.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.RouteHelpers — Lightning v0.10.5
+ LightningWeb.RouteHelpers — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.RouteHelpers
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.Router.html b/LightningWeb.Router.html
index 1df1a2672e..dd4a81220c 100644
--- a/LightningWeb.Router.html
+++ b/LightningWeb.Router.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.Router — Lightning v0.10.5
+ LightningWeb.Router — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.Router
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.RunLive.Index.html b/LightningWeb.RunLive.Index.html
index 592d1f8ec0..4be57a8461 100644
--- a/LightningWeb.RunLive.Index.html
+++ b/LightningWeb.RunLive.Index.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.RunLive.Index — Lightning v0.10.5
+ LightningWeb.RunLive.Index — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.RunLive.Index
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.RunLive.RerunJobComponent.html b/LightningWeb.RunLive.RerunJobComponent.html
index 984581011a..bb14723ad4 100644
--- a/LightningWeb.RunLive.RerunJobComponent.html
+++ b/LightningWeb.RunLive.RerunJobComponent.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.RunLive.RerunJobComponent — Lightning v0.10.5
+ LightningWeb.RunLive.RerunJobComponent — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.RunLive.RerunJobComponent
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.RunLive.RunViewerLive.html b/LightningWeb.RunLive.RunViewerLive.html
index 53e18d9c6a..abf8290ca5 100644
--- a/LightningWeb.RunLive.RunViewerLive.html
+++ b/LightningWeb.RunLive.RunViewerLive.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.RunLive.RunViewerLive — Lightning v0.10.5
+ LightningWeb.RunLive.RunViewerLive — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.RunLive.RunViewerLive
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.RunLive.Show.html b/LightningWeb.RunLive.Show.html
index ef047815a3..c70c988393 100644
--- a/LightningWeb.RunLive.Show.html
+++ b/LightningWeb.RunLive.Show.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.RunLive.Show — Lightning v0.10.5
+ LightningWeb.RunLive.Show — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.RunLive.Show
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.RunLive.WorkOrderComponent.html b/LightningWeb.RunLive.WorkOrderComponent.html
index f5bf6d15d0..37d2080df9 100644
--- a/LightningWeb.RunLive.WorkOrderComponent.html
+++ b/LightningWeb.RunLive.WorkOrderComponent.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.RunLive.WorkOrderComponent — Lightning v0.10.5
+ LightningWeb.RunLive.WorkOrderComponent — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.RunLive.WorkOrderComponent
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.Telemetry.html b/LightningWeb.Telemetry.html
index cd303ea280..557980d6bb 100644
--- a/LightningWeb.Telemetry.html
+++ b/LightningWeb.Telemetry.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.Telemetry — Lightning v0.10.5
+ LightningWeb.Telemetry — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.Telemetry
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.TokensLive.Index.html b/LightningWeb.TokensLive.Index.html
index 5cf2e3f1de..392016a7f9 100644
--- a/LightningWeb.TokensLive.Index.html
+++ b/LightningWeb.TokensLive.Index.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.TokensLive.Index — Lightning v0.10.5
+ LightningWeb.TokensLive.Index — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.TokensLive.Index
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.UserAuth.html b/LightningWeb.UserAuth.html
index 772831cf45..9980a2356a 100644
--- a/LightningWeb.UserAuth.html
+++ b/LightningWeb.UserAuth.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.UserAuth — Lightning v0.10.5
+ LightningWeb.UserAuth — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.UserAuth
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.UserConfirmationController.html b/LightningWeb.UserConfirmationController.html
index 4241d017b2..a5dc3a24f4 100644
--- a/LightningWeb.UserConfirmationController.html
+++ b/LightningWeb.UserConfirmationController.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.UserConfirmationController — Lightning v0.10.5
+ LightningWeb.UserConfirmationController — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.UserConfirmationController
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.UserLive.Edit.html b/LightningWeb.UserLive.Edit.html
index f246152361..ea2380c1b6 100644
--- a/LightningWeb.UserLive.Edit.html
+++ b/LightningWeb.UserLive.Edit.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.UserLive.Edit — Lightning v0.10.5
+ LightningWeb.UserLive.Edit — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.UserLive.Edit
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.UserLive.FormComponent.html b/LightningWeb.UserLive.FormComponent.html
index 6ed783ecb2..147be9c514 100644
--- a/LightningWeb.UserLive.FormComponent.html
+++ b/LightningWeb.UserLive.FormComponent.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.UserLive.FormComponent — Lightning v0.10.5
+ LightningWeb.UserLive.FormComponent — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.UserLive.FormComponent
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.UserLive.Index.html b/LightningWeb.UserLive.Index.html
index f044fc59c8..1ed3c60278 100644
--- a/LightningWeb.UserLive.Index.html
+++ b/LightningWeb.UserLive.Index.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.UserLive.Index — Lightning v0.10.5
+ LightningWeb.UserLive.Index — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.UserLive.Index
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.UserRegistrationController.html b/LightningWeb.UserRegistrationController.html
index a99110736c..f67a2181f5 100644
--- a/LightningWeb.UserRegistrationController.html
+++ b/LightningWeb.UserRegistrationController.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.UserRegistrationController — Lightning v0.10.5
+ LightningWeb.UserRegistrationController — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.UserRegistrationController
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.UserResetPasswordController.html b/LightningWeb.UserResetPasswordController.html
index 80b650e97d..223d584471 100644
--- a/LightningWeb.UserResetPasswordController.html
+++ b/LightningWeb.UserResetPasswordController.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.UserResetPasswordController — Lightning v0.10.5
+ LightningWeb.UserResetPasswordController — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.UserResetPasswordController
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.UserSessionController.html b/LightningWeb.UserSessionController.html
index 8501fd71d3..3d056ce9a5 100644
--- a/LightningWeb.UserSessionController.html
+++ b/LightningWeb.UserSessionController.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.UserSessionController — Lightning v0.10.5
+ LightningWeb.UserSessionController — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.UserSessionController
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.UserTOTPController.html b/LightningWeb.UserTOTPController.html
index 8170494ae9..2a4210deee 100644
--- a/LightningWeb.UserTOTPController.html
+++ b/LightningWeb.UserTOTPController.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.UserTOTPController — Lightning v0.10.5
+ LightningWeb.UserTOTPController — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.UserTOTPController
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.Utils.html b/LightningWeb.Utils.html
index 6b83837621..b7faee902b 100644
--- a/LightningWeb.Utils.html
+++ b/LightningWeb.Utils.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.Utils — Lightning v0.10.5
+ LightningWeb.Utils — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.Utils
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.VersionControlController.html b/LightningWeb.VersionControlController.html
index 846711f2b4..5853beff23 100644
--- a/LightningWeb.VersionControlController.html
+++ b/LightningWeb.VersionControlController.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.VersionControlController — Lightning v0.10.5
+ LightningWeb.VersionControlController — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.VersionControlController
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.WebhooksController.html b/LightningWeb.WebhooksController.html
index 1adbd276a4..5497b65a2f 100644
--- a/LightningWeb.WebhooksController.html
+++ b/LightningWeb.WebhooksController.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.WebhooksController — Lightning v0.10.5
+ LightningWeb.WebhooksController — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.WebhooksController
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.WorkerChannel.html b/LightningWeb.WorkerChannel.html
index 5d7aa9f17f..b85139e52a 100644
--- a/LightningWeb.WorkerChannel.html
+++ b/LightningWeb.WorkerChannel.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.WorkerChannel — Lightning v0.10.5
+ LightningWeb.WorkerChannel — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.WorkerChannel
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.WorkerSocket.html b/LightningWeb.WorkerSocket.html
index d526ce31fc..cd16408836 100644
--- a/LightningWeb.WorkerSocket.html
+++ b/LightningWeb.WorkerSocket.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.WorkerSocket — Lightning v0.10.5
+ LightningWeb.WorkerSocket — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.WorkerSocket
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.WorkflowLive.EditorPane.html b/LightningWeb.WorkflowLive.EditorPane.html
index ced8e39213..c62e03a3de 100644
--- a/LightningWeb.WorkflowLive.EditorPane.html
+++ b/LightningWeb.WorkflowLive.EditorPane.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.WorkflowLive.EditorPane — Lightning v0.10.5
+ LightningWeb.WorkflowLive.EditorPane — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.WorkflowLive.EditorPane
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.WorkflowLive.Helpers.html b/LightningWeb.WorkflowLive.Helpers.html
index f0f4989e97..cdc13fa5a8 100644
--- a/LightningWeb.WorkflowLive.Helpers.html
+++ b/LightningWeb.WorkflowLive.Helpers.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.WorkflowLive.Helpers — Lightning v0.10.5
+ LightningWeb.WorkflowLive.Helpers — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.WorkflowLive.Helpers
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.WorkflowLive.JobView.html b/LightningWeb.WorkflowLive.JobView.html
index 4e4e91e2c9..81525dcbff 100644
--- a/LightningWeb.WorkflowLive.JobView.html
+++ b/LightningWeb.WorkflowLive.JobView.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.WorkflowLive.JobView — Lightning v0.10.5
+ LightningWeb.WorkflowLive.JobView — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.WorkflowLive.JobView
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.WorkflowLive.NewWorkflowForm.html b/LightningWeb.WorkflowLive.NewWorkflowForm.html
index 9a2be0b4c8..415db061d1 100644
--- a/LightningWeb.WorkflowLive.NewWorkflowForm.html
+++ b/LightningWeb.WorkflowLive.NewWorkflowForm.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.WorkflowLive.NewWorkflowForm — Lightning v0.10.5
+ LightningWeb.WorkflowLive.NewWorkflowForm — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.WorkflowLive.NewWorkflowForm
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.WorkflowNewLive.WorkflowParams.html b/LightningWeb.WorkflowNewLive.WorkflowParams.html
index 9bc808b53b..68b72b851d 100644
--- a/LightningWeb.WorkflowNewLive.WorkflowParams.html
+++ b/LightningWeb.WorkflowNewLive.WorkflowParams.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.WorkflowNewLive.WorkflowParams — Lightning v0.10.5
+ LightningWeb.WorkflowNewLive.WorkflowParams — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb.WorkflowNewLive.WorkflowParams
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/LightningWeb.html b/LightningWeb.html
index 6f12e45cb3..057e3d7e0c 100644
--- a/LightningWeb.html
+++ b/LightningWeb.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb — Lightning v0.10.5
+ LightningWeb — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
LightningWeb
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Mix.Tasks.Lightning.GenEncryptionKey.html b/Mix.Tasks.Lightning.GenEncryptionKey.html
index 3a6f7d4a43..498c8f91c8 100644
--- a/Mix.Tasks.Lightning.GenEncryptionKey.html
+++ b/Mix.Tasks.Lightning.GenEncryptionKey.html
@@ -5,15 +5,15 @@
-
+
- mix lightning.gen_encryption_key — Lightning v0.10.5
+ mix lightning.gen_encryption_key — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
mix lightning.gen_encryption_key
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Mix.Tasks.Lightning.GenWorkerKeys.html b/Mix.Tasks.Lightning.GenWorkerKeys.html
index bbf5b7a0e9..5f4c4577ce 100644
--- a/Mix.Tasks.Lightning.GenWorkerKeys.html
+++ b/Mix.Tasks.Lightning.GenWorkerKeys.html
@@ -5,15 +5,15 @@
-
+
- mix lightning.gen_worker_keys — Lightning v0.10.5
+ mix lightning.gen_worker_keys — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
mix lightning.gen_worker_keys
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Mix.Tasks.Lightning.InstallAdaptorIcons.html b/Mix.Tasks.Lightning.InstallAdaptorIcons.html
index 41ed191713..59b35757a5 100644
--- a/Mix.Tasks.Lightning.InstallAdaptorIcons.html
+++ b/Mix.Tasks.Lightning.InstallAdaptorIcons.html
@@ -5,15 +5,15 @@
-
+
- mix lightning.install_adaptor_icons — Lightning v0.10.5
+ mix lightning.install_adaptor_icons — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
get("/users")
-get("/users", query: [scope: "admin"])
-get(client, "/users")
-get(client, "/users", query: [scope: "admin"])
-get(client, "/users", body: %{name: "Jon"})
+Perform a GET request.
See request/1
or request/2
for options definition.
get("/users")
+get("/users", query: [scope: "admin"])
+get(client, "/users")
+get(client, "/users", query: [scope: "admin"])
+get(client, "/users", body: %{name: "Jon"})
@@ -406,11 +406,11 @@ get!(client, url, opts)
-Perform a GET request.
See request!/1
or request!/2
for options definition.
get!("/users")
-get!("/users", query: [scope: "admin"])
-get!(client, "/users")
-get!(client, "/users", query: [scope: "admin"])
-get!(client, "/users", body: %{name: "Jon"})
+Perform a GET request.
See request!/1
or request!/2
for options definition.
get!("/users")
+get!("/users", query: [scope: "admin"])
+get!(client, "/users")
+get!(client, "/users", query: [scope: "admin"])
+get!(client, "/users", body: %{name: "Jon"})
@@ -438,11 +438,11 @@ head(client, url, opts)
-Perform a HEAD request.
See request/1
or request/2
for options definition.
head("/users")
-head("/users", query: [scope: "admin"])
-head(client, "/users")
-head(client, "/users", query: [scope: "admin"])
-head(client, "/users", body: %{name: "Jon"})
+Perform a HEAD request.
See request/1
or request/2
for options definition.
head("/users")
+head("/users", query: [scope: "admin"])
+head(client, "/users")
+head(client, "/users", query: [scope: "admin"])
+head(client, "/users", body: %{name: "Jon"})
@@ -471,11 +471,11 @@ head!(client, url, opts)
-Perform a HEAD request.
See request!/1
or request!/2
for options definition.
head!("/users")
-head!("/users", query: [scope: "admin"])
-head!(client, "/users")
-head!(client, "/users", query: [scope: "admin"])
-head!(client, "/users", body: %{name: "Jon"})
+Perform a HEAD request.
See request!/1
or request!/2
for options definition.
head!("/users")
+head!("/users", query: [scope: "admin"])
+head!(client, "/users")
+head!(client, "/users", query: [scope: "admin"])
+head!(client, "/users", body: %{name: "Jon"})
@@ -503,11 +503,11 @@ options(client, url, opts)
-Perform a OPTIONS request.
See request/1
or request/2
for options definition.
options("/users")
-options("/users", query: [scope: "admin"])
-options(client, "/users")
-options(client, "/users", query: [scope: "admin"])
-options(client, "/users", body: %{name: "Jon"})
+Perform a OPTIONS request.
See request/1
or request/2
for options definition.
options("/users")
+options("/users", query: [scope: "admin"])
+options(client, "/users")
+options(client, "/users", query: [scope: "admin"])
+options(client, "/users", body: %{name: "Jon"})
@@ -536,11 +536,11 @@ options!(client, url, opts)
-Perform a OPTIONS request.
See request!/1
or request!/2
for options definition.
options!("/users")
-options!("/users", query: [scope: "admin"])
-options!(client, "/users")
-options!(client, "/users", query: [scope: "admin"])
-options!(client, "/users", body: %{name: "Jon"})
+Perform a OPTIONS request.
See request!/1
or request!/2
for options definition.
options!("/users")
+options!("/users", query: [scope: "admin"])
+options!(client, "/users")
+options!(client, "/users", query: [scope: "admin"])
+options!(client, "/users", body: %{name: "Jon"})
@@ -569,10 +569,10 @@ patch(client, url, body, opts)
-Perform a PATCH request.
See request/1
or request/2
for options definition.
patch("/users", %{name: "Jon"})
-patch("/users", %{name: "Jon"}, query: [scope: "admin"])
-patch(client, "/users", %{name: "Jon"})
-patch(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
+Perform a PATCH request.
See request/1
or request/2
for options definition.
patch("/users", %{name: "Jon"})
+patch("/users", %{name: "Jon"}, query: [scope: "admin"])
+patch(client, "/users", %{name: "Jon"})
+patch(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
@@ -601,10 +601,10 @@ patch!(client, url, body, opts)
-Perform a PATCH request.
See request!/1
or request!/2
for options definition.
patch!("/users", %{name: "Jon"})
-patch!("/users", %{name: "Jon"}, query: [scope: "admin"])
-patch!(client, "/users", %{name: "Jon"})
-patch!(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
+Perform a PATCH request.
See request!/1
or request!/2
for options definition.
patch!("/users", %{name: "Jon"})
+patch!("/users", %{name: "Jon"}, query: [scope: "admin"])
+patch!(client, "/users", %{name: "Jon"})
+patch!(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
@@ -646,11 +646,11 @@ request(client \\ %Tesla.Client{}, options)
Examples
-ExampleApi.request(method: :get, url: "/users/path")
+ExampleApi.request(method: :get, url: "/users/path")
# use shortcut methods
-ExampleApi.get("/users/1")
-ExampleApi.post(client, "/users", %{name: "Jon"})
+ExampleApi.get("/users/1")
+ExampleApi.post(client, "/users", %{name: "Jon"})
@@ -708,11 +708,11 @@ trace(client, url, opts)
-Perform a TRACE request.
See request/1
or request/2
for options definition.
trace("/users")
-trace("/users", query: [scope: "admin"])
-trace(client, "/users")
-trace(client, "/users", query: [scope: "admin"])
-trace(client, "/users", body: %{name: "Jon"})
+Perform a TRACE request.
See request/1
or request/2
for options definition.
trace("/users")
+trace("/users", query: [scope: "admin"])
+trace(client, "/users")
+trace(client, "/users", query: [scope: "admin"])
+trace(client, "/users", body: %{name: "Jon"})
@@ -741,11 +741,11 @@ trace!(client, url, opts)
-Perform a TRACE request.
See request!/1
or request!/2
for options definition.
trace!("/users")
-trace!("/users", query: [scope: "admin"])
-trace!(client, "/users")
-trace!(client, "/users", query: [scope: "admin"])
-trace!(client, "/users", body: %{name: "Jon"})
+Perform a TRACE request.
See request!/1
or request!/2
for options definition.
trace!("/users")
+trace!("/users", query: [scope: "admin"])
+trace!(client, "/users")
+trace!(client, "/users", query: [scope: "admin"])
+trace!(client, "/users", body: %{name: "Jon"})
diff --git a/Mix.Tasks.Lightning.InstallRuntime.html b/Mix.Tasks.Lightning.InstallRuntime.html
index 112d46a708..8f6e15ce57 100644
--- a/Mix.Tasks.Lightning.InstallRuntime.html
+++ b/Mix.Tasks.Lightning.InstallRuntime.html
@@ -5,15 +5,15 @@
-
+
- mix lightning.install_runtime — Lightning v0.10.5
+ mix lightning.install_runtime — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
mix lightning.install_runtime
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/Mix.Tasks.Lightning.InstallSchemas.html b/Mix.Tasks.Lightning.InstallSchemas.html
index 3b7ef47075..19eed9000e 100644
--- a/Mix.Tasks.Lightning.InstallSchemas.html
+++ b/Mix.Tasks.Lightning.InstallSchemas.html
@@ -5,15 +5,15 @@
-
+
- mix lightning.install_schemas — Lightning v0.10.5
+ mix lightning.install_schemas — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
mix lightning.install_schemas
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
@@ -1817,14 +1817,14 @@ request(request)
Examples
-
request = %HTTPoison.Request{
+request = %HTTPoison.Request{
method: :post,
url: "https://my.website.com",
body: "{\"foo\": 3}",
- headers: [{"Accept", "application/json"}]
-}
+ headers: [{"Accept", "application/json"}]
+}
-request(request)
+request(request)
@@ -1882,7 +1882,7 @@ request(method, url, body \\ "",
Examples
-request(:post, "https://my.website.com", "{\"foo\": 3}", [{"Accept", "application/json"}])
+request(:post, "https://my.website.com", "{\"foo\": 3}", [{"Accept", "application/json"}])
diff --git a/ObanPruner.html b/ObanPruner.html
index 2b8bc97c4b..4c3f8e94a7 100644
--- a/ObanPruner.html
+++ b/ObanPruner.html
@@ -5,15 +5,15 @@
-
+
- ObanPruner — Lightning v0.10.5
+ ObanPruner — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
ObanPruner
- (Lightning v0.10.5)
+ (Lightning v0.10.6)
diff --git a/api-reference.html b/api-reference.html
index 07e6fad4a6..66eb639ffc 100644
--- a/api-reference.html
+++ b/api-reference.html
@@ -5,15 +5,15 @@
-
+
- API Reference — Lightning v0.10.5
+ API Reference — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -131,7 +131,7 @@
- API Reference Lightning v0.10.5
+ API Reference Lightning v0.10.6
diff --git a/benchmarking.md.html b/benchmarking.md.html
index cb2edb2127..81ff9ed74b 100644
--- a/benchmarking.md.html
+++ b/benchmarking.md.html
@@ -5,15 +5,15 @@
-
+
- Benchmarking — Lightning v0.10.5
+ Benchmarking — Lightning v0.10.6
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.10.5
+ v0.10.6
@@ -150,7 +150,7 @@
Model Identifier: MacBookPro17,1
Model Number: Z11B000E3LL/A
Chip: Apple M1
-Total Number of Cores: 8 (4 performance and 4 efficiency)
+Total Number of Cores: 8 (4 performance and 4 efficiency)
Memory: 16 GB
@@ -161,16 +161,16 @@
/\ |‾‾| /‾‾/ /‾‾/
/\ / \ | |/ / / /
- / \/ \ | ( / ‾‾\
- / \ | |\ \ | (‾) |
+ / \/ \ | ( / ‾‾\
+ / \ | |\ \ | (‾) |
/ __________ \ |__| \__\ \_____/ .io
execution: local
script: benchmarking/script.js
output: -
- scenarios: (100.00%) 1 scenario, 50 max VUs, 2m50s max duration (incl. graceful stop):
- * webhookRequests: Up to 50.00 iterations/s for 2m20s over 3 stages (maxVUs: 50, gracefulStop: 30s)
+ scenarios: (100.00%) 1 scenario, 50 max VUs, 2m50s max duration (incl. graceful stop):
+ * webhookRequests: Up to 50.00 iterations/s for 2m20s over 3 stages (maxVUs: 50, gracefulStop: 30s)
✓ status was 200
@@ -180,24 +180,24 @@
checks.........................: 100.00% ✓ 5765 ✗ 0
data_received..................: 1.6 MB 12 kB/s
data_sent......................: 59 MB 421 kB/s
- http_req_blocked...............: avg=16.01µs min=2µs med=9µs max=6.84ms p(90)=12µs p(95)=13µs
- http_req_connecting............: avg=4.35µs min=0s med=0s max=2.22ms p(90)=0s p(95)=0s
- ✓ http_req_duration..............: avg=53.62ms min=26.86ms med=49.03ms max=501.62ms p(90)=66.62ms p(95)=84.33ms
- { expected_response:true }...: avg=53.62ms min=26.86ms med=49.03ms max=501.62ms p(90)=66.62ms p(95)=84.33ms
+ http_req_blocked...............: avg=16.01µs min=2µs med=9µs max=6.84ms p(90)=12µs p(95)=13µs
+ http_req_connecting............: avg=4.35µs min=0s med=0s max=2.22ms p(90)=0s p(95)=0s
+ ✓ http_req_duration..............: avg=53.62ms min=26.86ms med=49.03ms max=501.62ms p(90)=66.62ms p(95)=84.33ms
+ { expected_response:true }...: avg=53.62ms min=26.86ms med=49.03ms max=501.62ms p(90)=66.62ms p(95)=84.33ms
✓ http_req_failed................: 0.00% ✓ 0 ✗ 5765
- http_req_receiving.............: avg=88.57µs min=13µs med=90µs max=2.99ms p(90)=108µs p(95)=124.8µs
- http_req_sending...............: avg=97.47µs min=29µs med=83µs max=6.86ms p(90)=139µs p(95)=162µs
- http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s
- http_req_waiting...............: avg=53.44ms min=26.68ms med=48.84ms max=501.43ms p(90)=66.43ms p(95)=84.05ms
+ http_req_receiving.............: avg=88.57µs min=13µs med=90µs max=2.99ms p(90)=108µs p(95)=124.8µs
+ http_req_sending...............: avg=97.47µs min=29µs med=83µs max=6.86ms p(90)=139µs p(95)=162µs
+ http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s
+ http_req_waiting...............: avg=53.44ms min=26.68ms med=48.84ms max=501.43ms p(90)=66.43ms p(95)=84.05ms
http_reqs......................: 5765 41.15402/s
- iteration_duration.............: avg=54.34ms min=20.75µs med=49.75ms max=502.26ms p(90)=67.39ms p(95)=84.91ms
+ iteration_duration.............: avg=54.34ms min=20.75µs med=49.75ms max=502.26ms p(90)=67.39ms p(95)=84.91ms
iterations.....................: 5765 41.15402/s
vus............................: 50 min=50 max=50
vus_max........................: 50 min=50 max=50
-running (2m20.1s), 00/50 VUs, 5765 complete and 0 interrupted iterations
-webhookRequests ✓ [======================================] 00/50 VUs 2m20s 01.12 iters/s
+
running (2m20.1s), 00/50 VUs, 5765 complete and 0 interrupted iterations
+webhookRequests ✓ [======================================] 00/50 VUs 2m20s 01.12 iters/s
@@ -208,12 +208,12 @@
project root.
Start up a local Lightning instance with an attached iex session. Note that
to simulate a production environment, set RTM=false
. In prod, you'll have
your ws-worker
running on a separate machine:
RMT=false iex -S mix phx.server
In the attached iex session, run the following, to have Lightning log
-internal telemetry data:
filepath = Path.join("benchmarking", "load_test_data.csv")
- output_file = File.open!(filepath, [:append])
+internal telemetry data: filepath = Path.join("benchmarking", "load_test_data.csv")
+ output_file = File.open!(filepath, [:append])
c "benchmarking/load_test_production_spans.exs"
- LoadTestingPrep.init(output_file)
Run the demo setup script: mix run --no-start priv/repo/demo.exs
The
+
LoadTestingPrep.init(output_file)
Run the demo setup script: mix run --no-start priv/repo/demo.exs
The
webhookURL
is already set to default to the webhook created in the demo
data
In another terminal (do not stop the Lightning server) run the
benchmarking/script.js
file using the following command
k6 run benchmarking/script.js
@@ -224,7 +224,7 @@
values only), (e.g. 2000 KB):k6 run -e PAYLOAD_SIZE=2000 benchmarking/script.js
To collect the benchmarking data in a CSV file, run the previous command with
the --out filename
option.
k6 run --out csv=test_results.csv benchmarking/script.js
-
In the iex session, close the output file:
LoadTestingPrep.fin(output_file)
See results output for other +
In the iex session, close the output file:
LoadTestingPrep.fin(output_file)
See results output for other available output formats.
max_frame_size
to the Cowboy websockets protocol options in an attempt
-to address #1421v0.10.0
and the final states are not guaranteed to be
accurate for workflows with multiple branches and leaf nodes with varying exit
reasons.The migration scripts can be run with a single function call in SetupUtils from
-a connect iex
session:
Lightning.SetupUtils.approximate_state_for_attempts_and_workorders()
Note that (like lots of other functionality in SetupUtils
, calling this
+a connect iex
session:
Lightning.SetupUtils.approximate_state_for_attempts_and_workorders()
Note that (like lots of other functionality in SetupUtils
, calling this
function is a destructive action and you should only do it if you've backed up
your data and you know what you're doing.)
As always, we recommend backing up your data before migrating. (And thanks for -bearing with us as we move towards our first stable Lightning release.)
attempts
. #1254adaptors
repo locally and load them in the job editor
-#943Note that this is a pre-release with a couple of known bugs that are tracked in -the Nodes and Edges epic.
.yaml
via UI
-#249v0.7.0
we change the underlying workflow building and execution
infrastructure to align with a standard "nodes and edges" design for directed
acyclic graphs (DAGs). Make sure to run the migrations!
-793superuser
to schedule deletion, cancel deletion, and
delete projects #757project owner
to schedule deletion, cancel deletion, and
-delete projects #746credential_id
on run directly for easier auditing of the history
interface. Admins can now see which credential was used to run a run.
#800delete-project
function now delete all associated activities
-#7590
will make automatic purging never occur but will still make
"deleted" projects and users unavailable. This has been requested by certain
organizations that must retain audit logs in a Lightning instance.
-758info
for runs. Most of the debug
logging is useful for
the CLI, but not for Lightning. In the future the log level will be
configurable at instance > project > job level by the superuser
and any
-project admin
.admin
.@openfn/engine
into the application.mix openfn.install.runtime
into application, use
mix lightning.install_runtime
.@openfn/cli
as the new runtime for Jobslanguage-dhis2
provides a single schema which defines the required
attributes for state.configuration
, while language-common
provides multiple
credential schemas like "oauth" or "basic auth" which define attributes for
-state.configuration
and which might be used by lots of different jobs.)state.configuration
and which might be used by lots of different jobs.)v2.0.0-rc2
adaptor (this pattern to be rolled out across adaptors)v2.0.0-rc2
adaptor (this pattern to be rolled out across adaptors)Register, log in and log out of an account
Allow superusers and admin users to create projects
Allow admin users to create or disable a user’s account
Allow superusers for local deployments to create users and give them access to project spaces
Create and edit a job with a webhook, flow/fail or cron trigger
Create and edit credentials for a job
Copy a job's webhook URL
View all workflows in a project visually
Deploy lightning locally with Docker
Enable a job to automatically process incoming requests
Run a job with a webhook or flow/fail trigger
View job runs along with their logs, exit code, start and end time
View data clips that have initiated job runs (http requests for webhooks, run -results)
If you're getting this error on debian
==> earmark_parser
-Compiling 1 file (.yrl)
+Compiling 1 file (.yrl)
/usr/lib/erlang/lib/parsetools-2.3.1/include/yeccpre.hrl: no such file or directory
could not compile dependency :earmark_parser, "mix compile" failed. You can recompile this dependency with "mix deps.compile earmark_parser", update it with "mix deps.update earmark_parser" or clean it with "mix deps.clean earmark_parser"
You need to install erlang development environment sudo apt install erlang-dev
refer to this issue
The build may not work on old versions of Docker and Docker lib/mix/tasks/compile.rambo.ex:89: Mix.Tasks.Compile.Rambo.compile!/0 lib/mix/tasks/compile.rambo.ex:51: Mix.Tasks.Compile.Rambo.run/1 - (mix 1.14.2) lib/mix/task.ex:421: anonymous fn/3 in Mix.Task.run_task/4 - (mix 1.14.2) lib/mix/cli.ex:84: Mix.CLI.run_task/2
You can resolve this error by installing the Rust compiler using Homebrew. Run + (mix 1.14.2) lib/mix/task.ex:421: anonymous fn/3 in Mix.Task.run_task/4 + (mix 1.14.2) lib/mix/cli.ex:84: Mix.CLI.run_task/2
You can resolve this error by installing the Rust compiler using Homebrew. Run
the following command in your terminal: brew install rust
If you have already compiled Rambo explicitly via mix compile.rambo
, and you
are still seeing the following error:
sh: /path_to_directory/Lightning/_build/dev/lib/rambo/priv/rambo: No such file or directory
sh: line 0: exec: /path_to_directory/Lightning/_build/dev/lib/rambo/priv/rambo: cannot execute: No such file or directory
You can try renaming deps/rambo/priv/rambo-mac
to deps/rambo/priv/rambo
.
If neither of the approaches above work, please raise an issue.
If you're actively working with docker, you start experiencing issues, and you diff --git a/search.html b/search.html index 427cb0aadc..519a447208 100644 --- a/search.html +++ b/search.html @@ -5,15 +5,15 @@ - + -