Current section

11 Versions

Jump to

Compare versions

4 files changed
+6 additions
-6 deletions
  @@ -54,4 +54,4 @@
54 54 {<<"optional">>,false},
55 55 {<<"repository">>,<<"hexpm">>},
56 56 {<<"requirement">>,<<">= 3.0.0">>}]]}.
57 - {<<"version">>,<<"0.1.4">>}.
57 + {<<"version">>,<<"0.1.5">>}.
  @@ -28,7 +28,7 @@ defmodule MavuBeUserUi.BackendHelpers do
28 28 end
29 29
30 30 def remove_attributes(attributes, tags_to_remove) when is_list(tags_to_remove) do
31 - # {attributes, tags_to_remove} |> Eigenart.EaError.die(label: "mwuits-debug 2021-01-16_20:06 ")
31 + # {attributes, tags_to_remove} |> MyApp.Error.die(label: "mwuits-debug 2021-01-16_20:06 ")
32 32 attributes
33 33 |> Enum.filter(fn {key, _val} ->
34 34 key not in tags_to_remove
  @@ -3,7 +3,7 @@ defmodule MavuBeUserUi.Live.EditComponent do
3 3 use MavuBeUserUiWeb, :live_component
4 4
5 5 # alias MyApp.BeAccounts
6 - alias MyApp.BeAccounts.BeUser
6 + # alias MyApp.BeAccounts.BeUser
7 7 alias MyApp.Repo
8 8
9 9 import MavuBeUserUi, only: [get_conf_val: 2]
  @@ -22,7 +22,7 @@ defmodule MavuBeUserUi.Live.EditComponent do
22 22 rec =
23 23 case assigns.rec_id do
24 24 "new" -> generate_default_rec(assigns)
25 - rec_id -> accounts_module(assigns).get_be_user!(MavuUtils.to_int(rec_id))
25 + rec_id -> accounts_module(assigns).get_user!(MavuUtils.to_int(rec_id))
26 26 end
27 27
28 28 {
  @@ -73,7 +73,7 @@ defmodule MavuBeUserUi.Live.EditComponent do
73 73 {:ok, _reservation} ->
74 74 {:noreply,
75 75 socket
76 - |> put_flash(:info, "BeUserlist updated successfully")
76 + |> put_flash(:info, "Userlist updated successfully")
77 77 |> push_patch(to: return_path(socket))}
78 78
79 79 {:error, %Ecto.Changeset{} = changeset} ->
  @@ -1,7 +1,7 @@
1 1 defmodule MavuBeUserUi.MixProject do
2 2 use Mix.Project
3 3
4 - @version "0.1.4"
4 + @version "0.1.5"
5 5 def project do
6 6 [
7 7 app: :mavu_be_user_ui,