mitgliederverwaltung/lib/mv/constants.ex
Moritz c8968636a8
All checks were successful
continuous-integration/drone/push Build is passing
feat: remove birth_date field from Member resource
Users who need birthday data can use custom fields instead.
Closes #161
2025-12-02 14:58:50 +01:00

22 lines
340 B
Elixir

defmodule Mv.Constants do
@moduledoc """
Module for defining constants and atoms.
"""
@member_fields [
:first_name,
:last_name,
:email,
:paid,
:phone_number,
:join_date,
:exit_date,
:notes,
:city,
:street,
:house_number,
:postal_code
]
def member_fields, do: @member_fields
end