chore: adds constant for member_fields

This commit is contained in:
carla 2025-12-02 09:22:49 +01:00 committed by Rafael Epplée
parent 944b868478
commit 831149f463

9
lib/mv/constants.ex Normal file
View file

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