You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"VALUES (:uid, :email, :name, 'TDEI', 'active', 'none', true, true, true, (now() at time zone 'utc'), (now() at time zone 'utc'), (now() at time zone 'utc')) "
317
+
"VALUES (:uid, :email, :name, 'TDEI', 'active', :pass_crypt, true, true, true, (now() at time zone 'utc'), (now() at time zone 'utc'), (now() at time zone 'utc')) "
317
318
"ON CONFLICT (auth_uid) DO NOTHING"
318
319
),
319
320
params={
320
321
"uid": uid,
321
322
"email": member.email,
322
323
"name": member.display_name,
324
+
# OSM validates pass_crypt length 8..255; a too-short value
325
+
# makes the user invalid and breaks Rails ops that re-validate
326
+
# the author (changeset/note comments). TDEI manages auth, so
0 commit comments