add dates to members

This commit is contained in:
2023-01-12 14:56:50 +02:00
parent 3f53b6b21b
commit a2215359dc
8 changed files with 26 additions and 7 deletions

View File

@ -48,6 +48,6 @@ class MembersController < ApplicationController
# Only allow a list of trusted parameters through.
def member_params
params.require(:member).permit(:name, :public, :bio , :picture)
params.require(:member).permit(:name, :public, :bio , :picture, :arrived ,:left)
end
end