Docker Compose config, local 389ds/dirsrv, LDAP and user seeds #74

Merged
raucao merged 27 commits from feature/docker_compose into master 2022-12-27 06:26:43 +00:00
Showing only changes of commit 1a470cf1c8 - Show all commits

View File

@ -5,6 +5,7 @@ class CreateAccount < ApplicationService
@email = args[:email]
@password = args[:password]
@invitation = args[:invitation]
@confirmed = args[:confirmed]
end
def call
@ -26,7 +27,8 @@ class CreateAccount < ApplicationService
ou: @domain,
email: @email,
password: @password,
password_confirmation: @password
password_confirmation: @password,
confirmed_at: @confirmed ? DateTime.now : nil
)
end