Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
lurnid committed Nov 15, 2024
1 parent 7e5e066 commit f1e3648
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 1 deletion.
4 changes: 4 additions & 0 deletions lib/maker_passport/accounts/user.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
defmodule MakerPassport.Accounts.User do
@moduledoc """
A user of the application.
"""

use Ecto.Schema
import Ecto.Changeset

Expand Down
1 change: 1 addition & 0 deletions lib/maker_passport/accounts/user_notifier.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
defmodule MakerPassport.Accounts.UserNotifier do
@moduledoc """
import Swoosh.Email
alias MakerPassport.Mailer
Expand Down
4 changes: 4 additions & 0 deletions lib/maker_passport/accounts/user_token.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
defmodule MakerPassport.Accounts.UserToken do
@moduledoc """
A user token.
"""

use Ecto.Schema
import Ecto.Query
alias MakerPassport.Accounts.UserToken
Expand Down
4 changes: 4 additions & 0 deletions lib/maker_passport/maker/profile.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
defmodule MakerPassport.Maker.Profile do
@moduledoc """
A Maker's profile.
"""

use Ecto.Schema
import Ecto.Changeset

Expand Down
6 changes: 5 additions & 1 deletion lib/maker_passport_web/components/custom_components.ex
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
defmodule MakerPassportWeb.CustomComponents do
use Phoenix.Component
@moduledoc """
Custom components for the application.
"""

use Phoenix.Component

alias MakerPassport.Maker.Profile

Expand Down
4 changes: 4 additions & 0 deletions lib/maker_passport_web/user_auth.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
defmodule MakerPassportWeb.UserAuth do
@moduledoc """
Provides authentication for the application.
"""

use MakerPassportWeb, :verified_routes

import Plug.Conn
Expand Down

0 comments on commit f1e3648

Please sign in to comment.