feat(file retrieval): create agent connect information

This commit is contained in:
simon lehericey 2023-12-12 14:23:42 +01:00
parent 4e023ebed0
commit 277ac1259a
7 changed files with 57 additions and 1 deletions

View file

@ -0,0 +1,12 @@
FactoryBot.define do
factory :agent_connect_information do
email { 'i@agent_connect.fr' }
given_name { 'John' }
usual_name { 'Doe' }
sub { '123456789' }
siret { '12345678901234' }
organizational_unit { 'Ministère A.M.E.R.' }
belonging_population { 'stagiaire' }
phone { '0123456789' }
end
end