samvera-persona 0.5.0 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ddf3f54947771dba72942c0491e7cc9648f47fa04e6c6717b9ca3e581cecb02d
4
- data.tar.gz: ff71b434034006562cccf85f6082a0ced62cbf173b5c5f20e815b8003514c936
3
+ metadata.gz: 767765f3c8318a96c5679a6c1703eb497bfd07ebf73b20e8e6ece5db9751e403
4
+ data.tar.gz: 19798f15dd75eb7e938fe53ae5f718ea8de793cbae4b3eb5e454c41c92db759f
5
5
  SHA512:
6
- metadata.gz: 9eb5d25d5088470b45fe9bf7ceef026ca7ae714f800a39a87224799fde31aae89f233565d0c50674572ccd45193dadcb54347d0d4332c882d0b24fa00a209b90
7
- data.tar.gz: 64ee485fe062c3d0eabdee3d1e44c6464ed00be3bb9bb2628a2018834c8041707830359759304c27596b1211786989047a0249008dee00a6199133d24de9b1e4
6
+ metadata.gz: 9a1f736e185b4a7e89904cb075327c268e27eb9526b47d9538a44f4429d1b5a11d1ed6c0a98348c356a2a7b9b33a660d23ca4c878fb08357305cb4e14865cf0a
7
+ data.tar.gz: ae08bedd057e84c2fd7085624dc1f6e1e42f7763cfb989b0495ae79239901f93f6f2694f440d19d779ec29b6bd3f4f06277b664cd36d2d9b587238513421d2bd
@@ -1,5 +1,5 @@
1
1
  module Samvera
2
2
  module Persona
3
- VERSION = '0.5.0'
3
+ VERSION = '0.6.0'
4
4
  end
5
5
  end
Binary file
Binary file
@@ -535,3 +535,32 @@ getter and setter.
535
535
 
536
536
  Read more about how to migrate at: https://guides.rubyonrails.org/active_record_multiple_databases.html#migrate-to-the-new-connection-handling
537
537
  (called from <top (required)> at /var/home/cjcolvar/Code/samvera/samvera-persona/spec/dummy/app/models/application_record.rb:1)
538
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
539
+ ActiveRecord::InternalMetadata Load (0.7ms) SELECT * FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? ORDER BY "ar_internal_metadata"."key" ASC LIMIT 1 [[nil, "environment"]]
540
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
541
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT * FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? ORDER BY "ar_internal_metadata"."key" ASC LIMIT 1 [[nil, "environment"]]
542
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
543
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT * FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? ORDER BY "ar_internal_metadata"."key" ASC LIMIT 1 [[nil, "environment"]]
544
+  (0.3ms) DROP TABLE IF EXISTS "users"
545
+  (3.1ms) CREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "deleted_at" datetime(6), "email" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime(6), "remember_created_at" datetime(6), "invitation_token" varchar, "invitation_created_at" datetime(6), "invitation_sent_at" datetime(6), "invitation_accepted_at" datetime(6), "invitation_limit" integer, "invited_by_type" varchar, "invited_by_id" integer, "invitations_count" integer DEFAULT 0)
546
+  (0.4ms) CREATE INDEX "index_users_on_deleted_at" ON "users" ("deleted_at")
547
+  (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
548
+  (0.1ms) CREATE UNIQUE INDEX "index_users_on_invitation_token" ON "users" ("invitation_token")
549
+  (0.2ms) CREATE INDEX "index_users_on_invitations_count" ON "users" ("invitations_count")
550
+  (0.2ms) CREATE INDEX "index_users_on_invited_by_id" ON "users" ("invited_by_id")
551
+  (0.1ms) CREATE INDEX "index_users_on_invited_by_type_and_invited_by_id" ON "users" ("invited_by_type", "invited_by_id")
552
+  (0.2ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
553
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
554
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
555
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES (20190628003746)
556
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES
557
+ (20190628003608),
558
+ (20190520170817),
559
+ (20190513181646);
560
+  (0.2ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
561
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT * FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? ORDER BY "ar_internal_metadata"."key" ASC LIMIT 1 [[nil, "environment"]]
562
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ('environment', 'development', '2025-05-23 16:08:14.070736', '2025-05-23 16:08:14.070741') RETURNING "key"
563
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT * FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? ORDER BY "ar_internal_metadata"."key" ASC LIMIT 1 [[nil, "environment"]]
564
+ ActiveRecord::InternalMetadata Update (0.1ms) UPDATE "ar_internal_metadata" SET "value" = 'test', "updated_at" = '2025-05-23 16:08:14.073156' WHERE "ar_internal_metadata"."key" = 'environment'
565
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT * FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? ORDER BY "ar_internal_metadata"."key" ASC LIMIT 1 [[nil, "schema_sha1"]]
566
+ ActiveRecord::InternalMetadata Create (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ('schema_sha1', 'a0d807ec79111b6bd4f504fbbcc0ddc17749f33f', '2025-05-23 16:08:14.075502', '2025-05-23 16:08:14.075505') RETURNING "key"
@@ -10011,3 +10011,862 @@ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms | Allocations: 1684)
10011
10011
  TRANSACTION (0.0ms) rollback transaction
10012
10012
  TRANSACTION (0.0ms) begin transaction
10013
10013
  TRANSACTION (0.0ms) rollback transaction
10014
+ TRANSACTION (0.0ms) begin transaction
10015
+ TRANSACTION (0.1ms) rollback transaction
10016
+ TRANSACTION (0.0ms) begin transaction
10017
+ TRANSACTION (0.0ms) rollback transaction
10018
+ TRANSACTION (0.0ms) begin transaction
10019
+ TRANSACTION (0.0ms) rollback transaction
10020
+ TRANSACTION (0.0ms) begin transaction
10021
+ TRANSACTION (0.0ms) rollback transaction
10022
+ TRANSACTION (0.1ms) begin transaction
10023
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
10024
+ User Exists? (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-1@test.com"], ["LIMIT", 1]]
10025
+ User Create (0.2ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:16.589826"], ["updated_at", "2025-05-23 16:08:16.589826"], ["email", "email-1@test.com"], ["encrypted_password", "[FILTERED]"]]
10026
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
10027
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10028
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-2@test.com"], ["LIMIT", 1]]
10029
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:16.594305"], ["updated_at", "2025-05-23 16:08:16.594305"], ["email", "email-2@test.com"], ["encrypted_password", "[FILTERED]"]]
10030
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10031
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10032
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-3@test.com"], ["LIMIT", 1]]
10033
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:16.597570"], ["updated_at", "2025-05-23 16:08:16.597570"], ["email", "email-3@test.com"], ["encrypted_password", "[FILTERED]"]]
10034
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10035
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10036
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-4@test.com"], ["LIMIT", 1]]
10037
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:16.600585"], ["updated_at", "2025-05-23 16:08:16.600585"], ["email", "email-4@test.com"], ["encrypted_password", "[FILTERED]"]]
10038
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10039
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10040
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-5@test.com"], ["LIMIT", 1]]
10041
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:16.603932"], ["updated_at", "2025-05-23 16:08:16.603932"], ["email", "email-5@test.com"], ["encrypted_password", "[FILTERED]"]]
10042
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10043
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10044
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-6@test.com"], ["LIMIT", 1]]
10045
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:16.607030"], ["updated_at", "2025-05-23 16:08:16.607030"], ["email", "email-6@test.com"], ["encrypted_password", "[FILTERED]"]]
10046
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10047
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."email" = ? ORDER BY "users"."id" ASC LIMIT ? [["email", "email-7@test.com"], ["LIMIT", 1]]
10048
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."invitation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["invitation_token", "4ad90f3e9f460951414f0e32937837b4186b7c84e226be6537afb5b006829755"], ["LIMIT", 1]]
10049
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10050
+ User Create (0.3ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password", "invitation_token", "invitation_created_at", "invitation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:16.735286"], ["updated_at", "2025-05-23 16:08:16.735286"], ["email", "email-7@test.com"], ["encrypted_password", "[FILTERED]"], ["invitation_token", "4ad90f3e9f460951414f0e32937837b4186b7c84e226be6537afb5b006829755"], ["invitation_created_at", "2025-05-23 16:08:16.734924"], ["invitation_sent_at", "2025-05-23 16:08:16.734924"]]
10051
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10052
+ Rendering /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.html.erb
10053
+ Rendered /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.html.erb (Duration: 2.7ms | GC: 0.0ms)
10054
+ Rendering /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.text.erb
10055
+ Rendered /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.text.erb (Duration: 0.6ms | GC: 0.0ms)
10056
+ Devise::Mailer#invitation_instructions: processed outbound mail in 41.4ms
10057
+ Delivered mail 68309d70bee97_1a863710cc729c2@trogglus-normalus.mail (30.7ms)
10058
+ Date: Fri, 23 May 2025 12:08:16 -0400
10059
+ From: please-change-me-at-config-initializers-devise@example.com
10060
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
10061
+ To: email-7@test.com
10062
+ Message-ID: <68309d70bee97_1a863710cc729c2@trogglus-normalus.mail>
10063
+ Subject: Invitation instructions
10064
+ Mime-Version: 1.0
10065
+ Content-Type: multipart/alternative;
10066
+ boundary="--==_mimepart_68309d70bdd6a_1a863710cc728ee";
10067
+ charset=UTF-8
10068
+ Content-Transfer-Encoding: 7bit
10069
+ validate:
10070
+
10071
+
10072
+ ----==_mimepart_68309d70bdd6a_1a863710cc728ee
10073
+ Content-Type: text/plain;
10074
+ charset=UTF-8
10075
+ Content-Transfer-Encoding: 7bit
10076
+
10077
+ Hello email-7@test.com
10078
+
10079
+ Someone has invited you to http://localhost:3000/, you can accept it through the link below.
10080
+
10081
+ http://localhost:3000/users/invitation/accept?invitation_token=t23vfWCbtxbLvYMKungF
10082
+
10083
+
10084
+ If you don't want to accept the invitation, please ignore this email. Your account won't be created until you access the link above and set your password.
10085
+
10086
+ ----==_mimepart_68309d70bdd6a_1a863710cc728ee
10087
+ Content-Type: text/html;
10088
+ charset=UTF-8
10089
+ Content-Transfer-Encoding: 7bit
10090
+
10091
+ <p>Hello email-7@test.com</p>
10092
+
10093
+ <p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
10094
+
10095
+ <p><a href="http://localhost:3000/users/invitation/accept?invitation_token=t23vfWCbtxbLvYMKungF">Accept invitation</a></p>
10096
+
10097
+
10098
+ <p>If you don&#39;t want to accept the invitation, please ignore this email. Your account won&#39;t be created until you access the link above and set your password.</p>
10099
+
10100
+ ----==_mimepart_68309d70bdd6a_1a863710cc728ee--
10101
+
10102
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."email" = ? ORDER BY "users"."id" ASC LIMIT ? [["email", "email-8@test.com"], ["LIMIT", 1]]
10103
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."invitation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["invitation_token", "600ec782b814b21f97d5b108280c17e0b5d018cd6773789df7e9c36e4ded2ad9"], ["LIMIT", 1]]
10104
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10105
+ User Create (0.3ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password", "invitation_token", "invitation_created_at", "invitation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:16.813018"], ["updated_at", "2025-05-23 16:08:16.813018"], ["email", "email-8@test.com"], ["encrypted_password", "[FILTERED]"], ["invitation_token", "600ec782b814b21f97d5b108280c17e0b5d018cd6773789df7e9c36e4ded2ad9"], ["invitation_created_at", "2025-05-23 16:08:16.812782"], ["invitation_sent_at", "2025-05-23 16:08:16.812782"]]
10106
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10107
+ Rendering /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.html.erb
10108
+ Rendered /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.html.erb (Duration: 0.4ms | GC: 0.0ms)
10109
+ Rendering /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.text.erb
10110
+ Rendered /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.text.erb (Duration: 0.2ms | GC: 0.0ms)
10111
+ Devise::Mailer#invitation_instructions: processed outbound mail in 2.6ms
10112
+ Delivered mail 68309d70c77f8_1a863710cc73123@trogglus-normalus.mail (1.7ms)
10113
+ Date: Fri, 23 May 2025 12:08:16 -0400
10114
+ From: please-change-me-at-config-initializers-devise@example.com
10115
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
10116
+ To: email-8@test.com
10117
+ Message-ID: <68309d70c77f8_1a863710cc73123@trogglus-normalus.mail>
10118
+ Subject: Invitation instructions
10119
+ Mime-Version: 1.0
10120
+ Content-Type: multipart/alternative;
10121
+ boundary="--==_mimepart_68309d70c7323_1a863710cc730e8";
10122
+ charset=UTF-8
10123
+ Content-Transfer-Encoding: 7bit
10124
+ validate:
10125
+
10126
+
10127
+ ----==_mimepart_68309d70c7323_1a863710cc730e8
10128
+ Content-Type: text/plain;
10129
+ charset=UTF-8
10130
+ Content-Transfer-Encoding: 7bit
10131
+
10132
+ Hello email-8@test.com
10133
+
10134
+ Someone has invited you to http://localhost:3000/, you can accept it through the link below.
10135
+
10136
+ http://localhost:3000/users/invitation/accept?invitation_token=s1tGwC1UZ1uEDFdD9Xpp
10137
+
10138
+
10139
+ If you don't want to accept the invitation, please ignore this email. Your account won't be created until you access the link above and set your password.
10140
+
10141
+ ----==_mimepart_68309d70c7323_1a863710cc730e8
10142
+ Content-Type: text/html;
10143
+ charset=UTF-8
10144
+ Content-Transfer-Encoding: 7bit
10145
+
10146
+ <p>Hello email-8@test.com</p>
10147
+
10148
+ <p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
10149
+
10150
+ <p><a href="http://localhost:3000/users/invitation/accept?invitation_token=s1tGwC1UZ1uEDFdD9Xpp">Accept invitation</a></p>
10151
+
10152
+
10153
+ <p>If you don&#39;t want to accept the invitation, please ignore this email. Your account won&#39;t be created until you access the link above and set your password.</p>
10154
+
10155
+ ----==_mimepart_68309d70c7323_1a863710cc730e8--
10156
+
10157
+ Rendering /home/cjcolvar/Code/samvera/samvera-persona/app/views/samvera/persona/users/index.html.erb
10158
+ Rendered /home/cjcolvar/Code/samvera/samvera-persona/app/views/samvera/persona/users/_index_title.html.erb (Duration: 0.4ms | GC: 0.0ms)
10159
+ Rendered /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise-4.9.4/app/views/devise/shared/_error_messages.html.erb (Duration: 0.4ms | GC: 0.0ms)
10160
+ Rendered /home/cjcolvar/Code/samvera/samvera-persona/app/views/samvera/persona/users/index.html.erb (Duration: 12.2ms | GC: 0.1ms)
10161
+ TRANSACTION (0.1ms) rollback transaction
10162
+ TRANSACTION (0.0ms) begin transaction
10163
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10164
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-9@test.com"], ["LIMIT", 1]]
10165
+ User Create (0.2ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:16.842190"], ["updated_at", "2025-05-23 16:08:16.842190"], ["email", "email-9@test.com"], ["encrypted_password", "[FILTERED]"]]
10166
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10167
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10168
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-10@test.com"], ["LIMIT", 1]]
10169
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:16.845741"], ["updated_at", "2025-05-23 16:08:16.845741"], ["email", "email-10@test.com"], ["encrypted_password", "[FILTERED]"]]
10170
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10171
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10172
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-11@test.com"], ["LIMIT", 1]]
10173
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:16.849181"], ["updated_at", "2025-05-23 16:08:16.849181"], ["email", "email-11@test.com"], ["encrypted_password", "[FILTERED]"]]
10174
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10175
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10176
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-12@test.com"], ["LIMIT", 1]]
10177
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:16.852488"], ["updated_at", "2025-05-23 16:08:16.852488"], ["email", "email-12@test.com"], ["encrypted_password", "[FILTERED]"]]
10178
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10179
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10180
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-13@test.com"], ["LIMIT", 1]]
10181
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:16.855682"], ["updated_at", "2025-05-23 16:08:16.855682"], ["email", "email-13@test.com"], ["encrypted_password", "[FILTERED]"]]
10182
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10183
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10184
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-14@test.com"], ["LIMIT", 1]]
10185
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:16.858778"], ["updated_at", "2025-05-23 16:08:16.858778"], ["email", "email-14@test.com"], ["encrypted_password", "[FILTERED]"]]
10186
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10187
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."email" = ? ORDER BY "users"."id" ASC LIMIT ? [["email", "email-15@test.com"], ["LIMIT", 1]]
10188
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."invitation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["invitation_token", "2190942d28f8b92567d291b702def4476609d90aebc0f2d7f9423c10751ac922"], ["LIMIT", 1]]
10189
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10190
+ User Create (0.2ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password", "invitation_token", "invitation_created_at", "invitation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:16.862763"], ["updated_at", "2025-05-23 16:08:16.862763"], ["email", "email-15@test.com"], ["encrypted_password", "[FILTERED]"], ["invitation_token", "2190942d28f8b92567d291b702def4476609d90aebc0f2d7f9423c10751ac922"], ["invitation_created_at", "2025-05-23 16:08:16.862588"], ["invitation_sent_at", "2025-05-23 16:08:16.862588"]]
10191
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10192
+ Rendering /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.html.erb
10193
+ Rendered /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.html.erb (Duration: 0.4ms | GC: 0.0ms)
10194
+ Rendering /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.text.erb
10195
+ Rendered /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.text.erb (Duration: 0.2ms | GC: 0.0ms)
10196
+ Devise::Mailer#invitation_instructions: processed outbound mail in 3.7ms
10197
+ Delivered mail 68309d70d4084_1a863710cc733e9@trogglus-normalus.mail (8.3ms)
10198
+ Date: Fri, 23 May 2025 12:08:16 -0400
10199
+ From: please-change-me-at-config-initializers-devise@example.com
10200
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
10201
+ To: email-15@test.com
10202
+ Message-ID: <68309d70d4084_1a863710cc733e9@trogglus-normalus.mail>
10203
+ Subject: Invitation instructions
10204
+ Mime-Version: 1.0
10205
+ Content-Type: multipart/alternative;
10206
+ boundary="--==_mimepart_68309d70d35f1_1a863710cc73272";
10207
+ charset=UTF-8
10208
+ Content-Transfer-Encoding: 7bit
10209
+ validate:
10210
+
10211
+
10212
+ ----==_mimepart_68309d70d35f1_1a863710cc73272
10213
+ Content-Type: text/plain;
10214
+ charset=UTF-8
10215
+ Content-Transfer-Encoding: 7bit
10216
+
10217
+ Hello email-15@test.com
10218
+
10219
+ Someone has invited you to http://localhost:3000/, you can accept it through the link below.
10220
+
10221
+ http://localhost:3000/users/invitation/accept?invitation_token=4RT-sWbPXWz4xsSUdqnD
10222
+
10223
+
10224
+ If you don't want to accept the invitation, please ignore this email. Your account won't be created until you access the link above and set your password.
10225
+
10226
+ ----==_mimepart_68309d70d35f1_1a863710cc73272
10227
+ Content-Type: text/html;
10228
+ charset=UTF-8
10229
+ Content-Transfer-Encoding: 7bit
10230
+
10231
+ <p>Hello email-15@test.com</p>
10232
+
10233
+ <p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
10234
+
10235
+ <p><a href="http://localhost:3000/users/invitation/accept?invitation_token=4RT-sWbPXWz4xsSUdqnD">Accept invitation</a></p>
10236
+
10237
+
10238
+ <p>If you don&#39;t want to accept the invitation, please ignore this email. Your account won&#39;t be created until you access the link above and set your password.</p>
10239
+
10240
+ ----==_mimepart_68309d70d35f1_1a863710cc73272--
10241
+
10242
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."email" = ? ORDER BY "users"."id" ASC LIMIT ? [["email", "email-16@test.com"], ["LIMIT", 1]]
10243
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."invitation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["invitation_token", "b3824c6611a0b610c4a3703ed4e343c2363185d044d12ab3f920c6dff98d615f"], ["LIMIT", 1]]
10244
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10245
+ User Create (0.3ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password", "invitation_token", "invitation_created_at", "invitation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:16.884124"], ["updated_at", "2025-05-23 16:08:16.884124"], ["email", "email-16@test.com"], ["encrypted_password", "[FILTERED]"], ["invitation_token", "b3824c6611a0b610c4a3703ed4e343c2363185d044d12ab3f920c6dff98d615f"], ["invitation_created_at", "2025-05-23 16:08:16.883890"], ["invitation_sent_at", "2025-05-23 16:08:16.883890"]]
10246
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10247
+ Rendering /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.html.erb
10248
+ Rendered /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.html.erb (Duration: 1.6ms | GC: 1.2ms)
10249
+ Rendering /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.text.erb
10250
+ Rendered /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.text.erb (Duration: 0.3ms | GC: 0.0ms)
10251
+ Devise::Mailer#invitation_instructions: processed outbound mail in 9.7ms
10252
+ Delivered mail 68309d70db9fa_1a863710cc73582@trogglus-normalus.mail (9.4ms)
10253
+ Date: Fri, 23 May 2025 12:08:16 -0400
10254
+ From: please-change-me-at-config-initializers-devise@example.com
10255
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
10256
+ To: email-16@test.com
10257
+ Message-ID: <68309d70db9fa_1a863710cc73582@trogglus-normalus.mail>
10258
+ Subject: Invitation instructions
10259
+ Mime-Version: 1.0
10260
+ Content-Type: multipart/alternative;
10261
+ boundary="--==_mimepart_68309d70da233_1a863710cc73458";
10262
+ charset=UTF-8
10263
+ Content-Transfer-Encoding: 7bit
10264
+ validate:
10265
+
10266
+
10267
+ ----==_mimepart_68309d70da233_1a863710cc73458
10268
+ Content-Type: text/plain;
10269
+ charset=UTF-8
10270
+ Content-Transfer-Encoding: 7bit
10271
+
10272
+ Hello email-16@test.com
10273
+
10274
+ Someone has invited you to http://localhost:3000/, you can accept it through the link below.
10275
+
10276
+ http://localhost:3000/users/invitation/accept?invitation_token=SN6apr9HaBMbPdKobJ7Z
10277
+
10278
+
10279
+ If you don't want to accept the invitation, please ignore this email. Your account won't be created until you access the link above and set your password.
10280
+
10281
+ ----==_mimepart_68309d70da233_1a863710cc73458
10282
+ Content-Type: text/html;
10283
+ charset=UTF-8
10284
+ Content-Transfer-Encoding: 7bit
10285
+
10286
+ <p>Hello email-16@test.com</p>
10287
+
10288
+ <p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
10289
+
10290
+ <p><a href="http://localhost:3000/users/invitation/accept?invitation_token=SN6apr9HaBMbPdKobJ7Z">Accept invitation</a></p>
10291
+
10292
+
10293
+ <p>If you don&#39;t want to accept the invitation, please ignore this email. Your account won&#39;t be created until you access the link above and set your password.</p>
10294
+
10295
+ ----==_mimepart_68309d70da233_1a863710cc73458--
10296
+
10297
+ Rendering /home/cjcolvar/Code/samvera/samvera-persona/app/views/samvera/persona/users/index.html.erb
10298
+ Rendered /home/cjcolvar/Code/samvera/samvera-persona/app/views/samvera/persona/users/_index_title.html.erb (Duration: 0.1ms | GC: 0.0ms)
10299
+ Rendered /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise-4.9.4/app/views/devise/shared/_error_messages.html.erb (Duration: 0.1ms | GC: 0.0ms)
10300
+ Rendered /home/cjcolvar/Code/samvera/samvera-persona/app/views/samvera/persona/users/index.html.erb (Duration: 14.3ms | GC: 8.1ms)
10301
+ TRANSACTION (0.1ms) rollback transaction
10302
+ TRANSACTION (0.0ms) begin transaction
10303
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10304
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-17@test.com"], ["LIMIT", 1]]
10305
+ User Create (0.2ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:16.930238"], ["updated_at", "2025-05-23 16:08:16.930238"], ["email", "email-17@test.com"], ["encrypted_password", "[FILTERED]"]]
10306
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10307
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10308
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-18@test.com"], ["LIMIT", 1]]
10309
+ User Create (0.3ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:16.934530"], ["updated_at", "2025-05-23 16:08:16.934530"], ["email", "email-18@test.com"], ["encrypted_password", "[FILTERED]"]]
10310
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10311
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10312
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-19@test.com"], ["LIMIT", 1]]
10313
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:16.938286"], ["updated_at", "2025-05-23 16:08:16.938286"], ["email", "email-19@test.com"], ["encrypted_password", "[FILTERED]"]]
10314
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10315
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10316
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-20@test.com"], ["LIMIT", 1]]
10317
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:16.941586"], ["updated_at", "2025-05-23 16:08:16.941586"], ["email", "email-20@test.com"], ["encrypted_password", "[FILTERED]"]]
10318
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10319
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10320
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-21@test.com"], ["LIMIT", 1]]
10321
+ User Create (0.2ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:16.944608"], ["updated_at", "2025-05-23 16:08:16.944608"], ["email", "email-21@test.com"], ["encrypted_password", "[FILTERED]"]]
10322
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10323
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10324
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-22@test.com"], ["LIMIT", 1]]
10325
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:16.948208"], ["updated_at", "2025-05-23 16:08:16.948208"], ["email", "email-22@test.com"], ["encrypted_password", "[FILTERED]"]]
10326
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10327
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."email" = ? ORDER BY "users"."id" ASC LIMIT ? [["email", "email-23@test.com"], ["LIMIT", 1]]
10328
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."invitation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["invitation_token", "6e3e08b43ced5e8425c02250890de9b66526bc2246a9ba79ab4910f28036e164"], ["LIMIT", 1]]
10329
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10330
+ User Create (0.2ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password", "invitation_token", "invitation_created_at", "invitation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:16.952220"], ["updated_at", "2025-05-23 16:08:16.952220"], ["email", "email-23@test.com"], ["encrypted_password", "[FILTERED]"], ["invitation_token", "6e3e08b43ced5e8425c02250890de9b66526bc2246a9ba79ab4910f28036e164"], ["invitation_created_at", "2025-05-23 16:08:16.952048"], ["invitation_sent_at", "2025-05-23 16:08:16.952048"]]
10331
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10332
+ Rendering /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.html.erb
10333
+ Rendered /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.html.erb (Duration: 0.4ms | GC: 0.0ms)
10334
+ Rendering /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.text.erb
10335
+ Rendered /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.text.erb (Duration: 0.3ms | GC: 0.0ms)
10336
+ Devise::Mailer#invitation_instructions: processed outbound mail in 3.0ms
10337
+ Delivered mail 68309d70e98ff_1a863710cc73787@trogglus-normalus.mail (2.1ms)
10338
+ Date: Fri, 23 May 2025 12:08:16 -0400
10339
+ From: please-change-me-at-config-initializers-devise@example.com
10340
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
10341
+ To: email-23@test.com
10342
+ Message-ID: <68309d70e98ff_1a863710cc73787@trogglus-normalus.mail>
10343
+ Subject: Invitation instructions
10344
+ Mime-Version: 1.0
10345
+ Content-Type: multipart/alternative;
10346
+ boundary="--==_mimepart_68309d70e949b_1a863710cc73696";
10347
+ charset=UTF-8
10348
+ Content-Transfer-Encoding: 7bit
10349
+ validate:
10350
+
10351
+
10352
+ ----==_mimepart_68309d70e949b_1a863710cc73696
10353
+ Content-Type: text/plain;
10354
+ charset=UTF-8
10355
+ Content-Transfer-Encoding: 7bit
10356
+
10357
+ Hello email-23@test.com
10358
+
10359
+ Someone has invited you to http://localhost:3000/, you can accept it through the link below.
10360
+
10361
+ http://localhost:3000/users/invitation/accept?invitation_token=qUi-yrPM6VftpMks3LWF
10362
+
10363
+
10364
+ If you don't want to accept the invitation, please ignore this email. Your account won't be created until you access the link above and set your password.
10365
+
10366
+ ----==_mimepart_68309d70e949b_1a863710cc73696
10367
+ Content-Type: text/html;
10368
+ charset=UTF-8
10369
+ Content-Transfer-Encoding: 7bit
10370
+
10371
+ <p>Hello email-23@test.com</p>
10372
+
10373
+ <p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
10374
+
10375
+ <p><a href="http://localhost:3000/users/invitation/accept?invitation_token=qUi-yrPM6VftpMks3LWF">Accept invitation</a></p>
10376
+
10377
+
10378
+ <p>If you don&#39;t want to accept the invitation, please ignore this email. Your account won&#39;t be created until you access the link above and set your password.</p>
10379
+
10380
+ ----==_mimepart_68309d70e949b_1a863710cc73696--
10381
+
10382
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."email" = ? ORDER BY "users"."id" ASC LIMIT ? [["email", "email-24@test.com"], ["LIMIT", 1]]
10383
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."invitation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["invitation_token", "53ff121ccf2c2715b4d407e0b9806d947d9e962df0f836c2eec080fe33c550e4"], ["LIMIT", 1]]
10384
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10385
+ User Create (0.2ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password", "invitation_token", "invitation_created_at", "invitation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:16.961807"], ["updated_at", "2025-05-23 16:08:16.961807"], ["email", "email-24@test.com"], ["encrypted_password", "[FILTERED]"], ["invitation_token", "53ff121ccf2c2715b4d407e0b9806d947d9e962df0f836c2eec080fe33c550e4"], ["invitation_created_at", "2025-05-23 16:08:16.961632"], ["invitation_sent_at", "2025-05-23 16:08:16.961632"]]
10386
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10387
+ Rendering /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.html.erb
10388
+ Rendered /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.html.erb (Duration: 0.4ms | GC: 0.0ms)
10389
+ Rendering /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.text.erb
10390
+ Rendered /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.text.erb (Duration: 0.2ms | GC: 0.0ms)
10391
+ Devise::Mailer#invitation_instructions: processed outbound mail in 2.6ms
10392
+ Delivered mail 68309d70ebc53_1a863710cc7392d@trogglus-normalus.mail (2.1ms)
10393
+ Date: Fri, 23 May 2025 12:08:16 -0400
10394
+ From: please-change-me-at-config-initializers-devise@example.com
10395
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
10396
+ To: email-24@test.com
10397
+ Message-ID: <68309d70ebc53_1a863710cc7392d@trogglus-normalus.mail>
10398
+ Subject: Invitation instructions
10399
+ Mime-Version: 1.0
10400
+ Content-Type: multipart/alternative;
10401
+ boundary="--==_mimepart_68309d70eb86d_1a863710cc7384d";
10402
+ charset=UTF-8
10403
+ Content-Transfer-Encoding: 7bit
10404
+ validate:
10405
+
10406
+
10407
+ ----==_mimepart_68309d70eb86d_1a863710cc7384d
10408
+ Content-Type: text/plain;
10409
+ charset=UTF-8
10410
+ Content-Transfer-Encoding: 7bit
10411
+
10412
+ Hello email-24@test.com
10413
+
10414
+ Someone has invited you to http://localhost:3000/, you can accept it through the link below.
10415
+
10416
+ http://localhost:3000/users/invitation/accept?invitation_token=pgLDzzguHoUN7G7s5H25
10417
+
10418
+
10419
+ If you don't want to accept the invitation, please ignore this email. Your account won't be created until you access the link above and set your password.
10420
+
10421
+ ----==_mimepart_68309d70eb86d_1a863710cc7384d
10422
+ Content-Type: text/html;
10423
+ charset=UTF-8
10424
+ Content-Transfer-Encoding: 7bit
10425
+
10426
+ <p>Hello email-24@test.com</p>
10427
+
10428
+ <p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
10429
+
10430
+ <p><a href="http://localhost:3000/users/invitation/accept?invitation_token=pgLDzzguHoUN7G7s5H25">Accept invitation</a></p>
10431
+
10432
+
10433
+ <p>If you don&#39;t want to accept the invitation, please ignore this email. Your account won&#39;t be created until you access the link above and set your password.</p>
10434
+
10435
+ ----==_mimepart_68309d70eb86d_1a863710cc7384d--
10436
+
10437
+ Rendering /home/cjcolvar/Code/samvera/samvera-persona/app/views/samvera/persona/users/index.html.erb
10438
+ Rendered /home/cjcolvar/Code/samvera/samvera-persona/app/views/samvera/persona/users/_index_title.html.erb (Duration: 0.1ms | GC: 0.0ms)
10439
+ Rendered /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise-4.9.4/app/views/devise/shared/_error_messages.html.erb (Duration: 0.0ms | GC: 0.0ms)
10440
+ Rendered /home/cjcolvar/Code/samvera/samvera-persona/app/views/samvera/persona/users/index.html.erb (Duration: 5.0ms | GC: 0.2ms)
10441
+ TRANSACTION (0.1ms) rollback transaction
10442
+ TRANSACTION (0.0ms) begin transaction
10443
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10444
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-25@test.com"], ["LIMIT", 1]]
10445
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:16.978376"], ["updated_at", "2025-05-23 16:08:16.978376"], ["email", "email-25@test.com"], ["encrypted_password", "[FILTERED]"]]
10446
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10447
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10448
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-26@test.com"], ["LIMIT", 1]]
10449
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:16.981757"], ["updated_at", "2025-05-23 16:08:16.981757"], ["email", "email-26@test.com"], ["encrypted_password", "[FILTERED]"]]
10450
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10451
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10452
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-27@test.com"], ["LIMIT", 1]]
10453
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:16.985069"], ["updated_at", "2025-05-23 16:08:16.985069"], ["email", "email-27@test.com"], ["encrypted_password", "[FILTERED]"]]
10454
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10455
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10456
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-28@test.com"], ["LIMIT", 1]]
10457
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:16.988286"], ["updated_at", "2025-05-23 16:08:16.988286"], ["email", "email-28@test.com"], ["encrypted_password", "[FILTERED]"]]
10458
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10459
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10460
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-29@test.com"], ["LIMIT", 1]]
10461
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:16.991280"], ["updated_at", "2025-05-23 16:08:16.991280"], ["email", "email-29@test.com"], ["encrypted_password", "[FILTERED]"]]
10462
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10463
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10464
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-30@test.com"], ["LIMIT", 1]]
10465
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:16.994307"], ["updated_at", "2025-05-23 16:08:16.994307"], ["email", "email-30@test.com"], ["encrypted_password", "[FILTERED]"]]
10466
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10467
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."email" = ? ORDER BY "users"."id" ASC LIMIT ? [["email", "email-31@test.com"], ["LIMIT", 1]]
10468
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."invitation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["invitation_token", "1d77466c59cc1524405841fdfd86c751073dcaa481ac01df508ba0a2be74ccb1"], ["LIMIT", 1]]
10469
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10470
+ User Create (0.2ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password", "invitation_token", "invitation_created_at", "invitation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:16.998302"], ["updated_at", "2025-05-23 16:08:16.998302"], ["email", "email-31@test.com"], ["encrypted_password", "[FILTERED]"], ["invitation_token", "1d77466c59cc1524405841fdfd86c751073dcaa481ac01df508ba0a2be74ccb1"], ["invitation_created_at", "2025-05-23 16:08:16.998124"], ["invitation_sent_at", "2025-05-23 16:08:16.998124"]]
10471
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10472
+ Rendering /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.html.erb
10473
+ Rendered /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.html.erb (Duration: 0.4ms | GC: 0.0ms)
10474
+ Rendering /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.text.erb
10475
+ Rendered /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.text.erb (Duration: 0.2ms | GC: 0.0ms)
10476
+ Devise::Mailer#invitation_instructions: processed outbound mail in 2.6ms
10477
+ Delivered mail 68309d71908_1a863710cc7415b@trogglus-normalus.mail (1.8ms)
10478
+ Date: Fri, 23 May 2025 12:08:17 -0400
10479
+ From: please-change-me-at-config-initializers-devise@example.com
10480
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
10481
+ To: email-31@test.com
10482
+ Message-ID: <68309d71908_1a863710cc7415b@trogglus-normalus.mail>
10483
+ Subject: Invitation instructions
10484
+ Mime-Version: 1.0
10485
+ Content-Type: multipart/alternative;
10486
+ boundary="--==_mimepart_68309d714c6_1a863710cc7401";
10487
+ charset=UTF-8
10488
+ Content-Transfer-Encoding: 7bit
10489
+ validate:
10490
+
10491
+
10492
+ ----==_mimepart_68309d714c6_1a863710cc7401
10493
+ Content-Type: text/plain;
10494
+ charset=UTF-8
10495
+ Content-Transfer-Encoding: 7bit
10496
+
10497
+ Hello email-31@test.com
10498
+
10499
+ Someone has invited you to http://localhost:3000/, you can accept it through the link below.
10500
+
10501
+ http://localhost:3000/users/invitation/accept?invitation_token=mRqaeH6GpQjRzQ4x8n6c
10502
+
10503
+
10504
+ If you don't want to accept the invitation, please ignore this email. Your account won't be created until you access the link above and set your password.
10505
+
10506
+ ----==_mimepart_68309d714c6_1a863710cc7401
10507
+ Content-Type: text/html;
10508
+ charset=UTF-8
10509
+ Content-Transfer-Encoding: 7bit
10510
+
10511
+ <p>Hello email-31@test.com</p>
10512
+
10513
+ <p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
10514
+
10515
+ <p><a href="http://localhost:3000/users/invitation/accept?invitation_token=mRqaeH6GpQjRzQ4x8n6c">Accept invitation</a></p>
10516
+
10517
+
10518
+ <p>If you don&#39;t want to accept the invitation, please ignore this email. Your account won&#39;t be created until you access the link above and set your password.</p>
10519
+
10520
+ ----==_mimepart_68309d714c6_1a863710cc7401--
10521
+
10522
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."email" = ? ORDER BY "users"."id" ASC LIMIT ? [["email", "email-32@test.com"], ["LIMIT", 1]]
10523
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."invitation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["invitation_token", "06bdb417997548b374f2bcf5d43a344790a10f101ede652dcd5eae12b0e9d3a0"], ["LIMIT", 1]]
10524
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10525
+ User Create (0.2ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password", "invitation_token", "invitation_created_at", "invitation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:17.007121"], ["updated_at", "2025-05-23 16:08:17.007121"], ["email", "email-32@test.com"], ["encrypted_password", "[FILTERED]"], ["invitation_token", "06bdb417997548b374f2bcf5d43a344790a10f101ede652dcd5eae12b0e9d3a0"], ["invitation_created_at", "2025-05-23 16:08:17.006949"], ["invitation_sent_at", "2025-05-23 16:08:17.006949"]]
10526
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10527
+ Rendering /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.html.erb
10528
+ Rendered /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.html.erb (Duration: 0.4ms | GC: 0.0ms)
10529
+ Rendering /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.text.erb
10530
+ Rendered /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.text.erb (Duration: 0.2ms | GC: 0.0ms)
10531
+ Devise::Mailer#invitation_instructions: processed outbound mail in 2.3ms
10532
+ Delivered mail 68309d712a39_1a863710cc7433@trogglus-normalus.mail (1.8ms)
10533
+ Date: Fri, 23 May 2025 12:08:17 -0400
10534
+ From: please-change-me-at-config-initializers-devise@example.com
10535
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
10536
+ To: email-32@test.com
10537
+ Message-ID: <68309d712a39_1a863710cc7433@trogglus-normalus.mail>
10538
+ Subject: Invitation instructions
10539
+ Mime-Version: 1.0
10540
+ Content-Type: multipart/alternative;
10541
+ boundary="--==_mimepart_68309d712655_1a863710cc742ea";
10542
+ charset=UTF-8
10543
+ Content-Transfer-Encoding: 7bit
10544
+ validate:
10545
+
10546
+
10547
+ ----==_mimepart_68309d712655_1a863710cc742ea
10548
+ Content-Type: text/plain;
10549
+ charset=UTF-8
10550
+ Content-Transfer-Encoding: 7bit
10551
+
10552
+ Hello email-32@test.com
10553
+
10554
+ Someone has invited you to http://localhost:3000/, you can accept it through the link below.
10555
+
10556
+ http://localhost:3000/users/invitation/accept?invitation_token=5jkW5o2y-E3o_4wA8aM-
10557
+
10558
+
10559
+ If you don't want to accept the invitation, please ignore this email. Your account won't be created until you access the link above and set your password.
10560
+
10561
+ ----==_mimepart_68309d712655_1a863710cc742ea
10562
+ Content-Type: text/html;
10563
+ charset=UTF-8
10564
+ Content-Transfer-Encoding: 7bit
10565
+
10566
+ <p>Hello email-32@test.com</p>
10567
+
10568
+ <p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
10569
+
10570
+ <p><a href="http://localhost:3000/users/invitation/accept?invitation_token=5jkW5o2y-E3o_4wA8aM-">Accept invitation</a></p>
10571
+
10572
+
10573
+ <p>If you don&#39;t want to accept the invitation, please ignore this email. Your account won&#39;t be created until you access the link above and set your password.</p>
10574
+
10575
+ ----==_mimepart_68309d712655_1a863710cc742ea--
10576
+
10577
+ Rendering /home/cjcolvar/Code/samvera/samvera-persona/app/views/samvera/persona/users/index.html.erb
10578
+ Rendered /home/cjcolvar/Code/samvera/samvera-persona/app/views/samvera/persona/users/_index_title.html.erb (Duration: 0.1ms | GC: 0.0ms)
10579
+ Rendered /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise-4.9.4/app/views/devise/shared/_error_messages.html.erb (Duration: 0.0ms | GC: 0.0ms)
10580
+ Rendered /home/cjcolvar/Code/samvera/samvera-persona/app/views/samvera/persona/users/index.html.erb (Duration: 4.8ms | GC: 0.0ms)
10581
+ TRANSACTION (0.1ms) rollback transaction
10582
+ TRANSACTION (0.0ms) begin transaction
10583
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10584
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-33@test.com"], ["LIMIT", 1]]
10585
+ User Create (0.2ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:17.023235"], ["updated_at", "2025-05-23 16:08:17.023235"], ["email", "email-33@test.com"], ["encrypted_password", "[FILTERED]"]]
10586
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10587
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
10588
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-34@test.com"], ["LIMIT", 1]]
10589
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:17.026742"], ["updated_at", "2025-05-23 16:08:17.026742"], ["email", "email-34@test.com"], ["encrypted_password", "[FILTERED]"]]
10590
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10591
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10592
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-35@test.com"], ["LIMIT", 1]]
10593
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:17.030157"], ["updated_at", "2025-05-23 16:08:17.030157"], ["email", "email-35@test.com"], ["encrypted_password", "[FILTERED]"]]
10594
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10595
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10596
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-36@test.com"], ["LIMIT", 1]]
10597
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:17.033449"], ["updated_at", "2025-05-23 16:08:17.033449"], ["email", "email-36@test.com"], ["encrypted_password", "[FILTERED]"]]
10598
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10599
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10600
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-37@test.com"], ["LIMIT", 1]]
10601
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:17.036548"], ["updated_at", "2025-05-23 16:08:17.036548"], ["email", "email-37@test.com"], ["encrypted_password", "[FILTERED]"]]
10602
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10603
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10604
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-38@test.com"], ["LIMIT", 1]]
10605
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:17.045508"], ["updated_at", "2025-05-23 16:08:17.045508"], ["email", "email-38@test.com"], ["encrypted_password", "[FILTERED]"]]
10606
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10607
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."email" = ? ORDER BY "users"."id" ASC LIMIT ? [["email", "email-39@test.com"], ["LIMIT", 1]]
10608
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."invitation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["invitation_token", "4718eecaa81f9630d8e42a8126da89d701e7711c7cfbe4b8f9a2777aa483ab77"], ["LIMIT", 1]]
10609
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10610
+ User Create (0.2ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password", "invitation_token", "invitation_created_at", "invitation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:17.049555"], ["updated_at", "2025-05-23 16:08:17.049555"], ["email", "email-39@test.com"], ["encrypted_password", "[FILTERED]"], ["invitation_token", "4718eecaa81f9630d8e42a8126da89d701e7711c7cfbe4b8f9a2777aa483ab77"], ["invitation_created_at", "2025-05-23 16:08:17.049380"], ["invitation_sent_at", "2025-05-23 16:08:17.049380"]]
10611
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10612
+ Rendering /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.html.erb
10613
+ Rendered /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.html.erb (Duration: 0.8ms | GC: 0.4ms)
10614
+ Rendering /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.text.erb
10615
+ Rendered /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.text.erb (Duration: 0.2ms | GC: 0.0ms)
10616
+ Devise::Mailer#invitation_instructions: processed outbound mail in 3.0ms
10617
+ Delivered mail 68309d71d29d_1a863710cc74579@trogglus-normalus.mail (2.2ms)
10618
+ Date: Fri, 23 May 2025 12:08:17 -0400
10619
+ From: please-change-me-at-config-initializers-devise@example.com
10620
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
10621
+ To: email-39@test.com
10622
+ Message-ID: <68309d71d29d_1a863710cc74579@trogglus-normalus.mail>
10623
+ Subject: Invitation instructions
10624
+ Mime-Version: 1.0
10625
+ Content-Type: multipart/alternative;
10626
+ boundary="--==_mimepart_68309d71ce5b_1a863710cc74443";
10627
+ charset=UTF-8
10628
+ Content-Transfer-Encoding: 7bit
10629
+ validate:
10630
+
10631
+
10632
+ ----==_mimepart_68309d71ce5b_1a863710cc74443
10633
+ Content-Type: text/plain;
10634
+ charset=UTF-8
10635
+ Content-Transfer-Encoding: 7bit
10636
+
10637
+ Hello email-39@test.com
10638
+
10639
+ Someone has invited you to http://localhost:3000/, you can accept it through the link below.
10640
+
10641
+ http://localhost:3000/users/invitation/accept?invitation_token=VVPFNDxaDLsYz2gb_8Pr
10642
+
10643
+
10644
+ If you don't want to accept the invitation, please ignore this email. Your account won't be created until you access the link above and set your password.
10645
+
10646
+ ----==_mimepart_68309d71ce5b_1a863710cc74443
10647
+ Content-Type: text/html;
10648
+ charset=UTF-8
10649
+ Content-Transfer-Encoding: 7bit
10650
+
10651
+ <p>Hello email-39@test.com</p>
10652
+
10653
+ <p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
10654
+
10655
+ <p><a href="http://localhost:3000/users/invitation/accept?invitation_token=VVPFNDxaDLsYz2gb_8Pr">Accept invitation</a></p>
10656
+
10657
+
10658
+ <p>If you don&#39;t want to accept the invitation, please ignore this email. Your account won&#39;t be created until you access the link above and set your password.</p>
10659
+
10660
+ ----==_mimepart_68309d71ce5b_1a863710cc74443--
10661
+
10662
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."email" = ? ORDER BY "users"."id" ASC LIMIT ? [["email", "email-40@test.com"], ["LIMIT", 1]]
10663
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."invitation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["invitation_token", "4a29e2d9772c5f062f3b4a11a8108c96d3762bbbfb41ffc132d8626abf573532"], ["LIMIT", 1]]
10664
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10665
+ User Create (0.2ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password", "invitation_token", "invitation_created_at", "invitation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:17.059055"], ["updated_at", "2025-05-23 16:08:17.059055"], ["email", "email-40@test.com"], ["encrypted_password", "[FILTERED]"], ["invitation_token", "4a29e2d9772c5f062f3b4a11a8108c96d3762bbbfb41ffc132d8626abf573532"], ["invitation_created_at", "2025-05-23 16:08:17.058881"], ["invitation_sent_at", "2025-05-23 16:08:17.058881"]]
10666
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10667
+ Rendering /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.html.erb
10668
+ Rendered /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.html.erb (Duration: 0.3ms | GC: 0.0ms)
10669
+ Rendering /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.text.erb
10670
+ Rendered /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise_invitable-2.0.11/app/views/devise/mailer/invitation_instructions.text.erb (Duration: 0.2ms | GC: 0.0ms)
10671
+ Devise::Mailer#invitation_instructions: processed outbound mail in 2.7ms
10672
+ Delivered mail 68309d71f639_1a863710cc747dc@trogglus-normalus.mail (1.9ms)
10673
+ Date: Fri, 23 May 2025 12:08:17 -0400
10674
+ From: please-change-me-at-config-initializers-devise@example.com
10675
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
10676
+ To: email-40@test.com
10677
+ Message-ID: <68309d71f639_1a863710cc747dc@trogglus-normalus.mail>
10678
+ Subject: Invitation instructions
10679
+ Mime-Version: 1.0
10680
+ Content-Type: multipart/alternative;
10681
+ boundary="--==_mimepart_68309d71f255_1a863710cc74621";
10682
+ charset=UTF-8
10683
+ Content-Transfer-Encoding: 7bit
10684
+ validate:
10685
+
10686
+
10687
+ ----==_mimepart_68309d71f255_1a863710cc74621
10688
+ Content-Type: text/plain;
10689
+ charset=UTF-8
10690
+ Content-Transfer-Encoding: 7bit
10691
+
10692
+ Hello email-40@test.com
10693
+
10694
+ Someone has invited you to http://localhost:3000/, you can accept it through the link below.
10695
+
10696
+ http://localhost:3000/users/invitation/accept?invitation_token=jes8LVHp2JEx3zQpiCFW
10697
+
10698
+
10699
+ If you don't want to accept the invitation, please ignore this email. Your account won't be created until you access the link above and set your password.
10700
+
10701
+ ----==_mimepart_68309d71f255_1a863710cc74621
10702
+ Content-Type: text/html;
10703
+ charset=UTF-8
10704
+ Content-Transfer-Encoding: 7bit
10705
+
10706
+ <p>Hello email-40@test.com</p>
10707
+
10708
+ <p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
10709
+
10710
+ <p><a href="http://localhost:3000/users/invitation/accept?invitation_token=jes8LVHp2JEx3zQpiCFW">Accept invitation</a></p>
10711
+
10712
+
10713
+ <p>If you don&#39;t want to accept the invitation, please ignore this email. Your account won&#39;t be created until you access the link above and set your password.</p>
10714
+
10715
+ ----==_mimepart_68309d71f255_1a863710cc74621--
10716
+
10717
+ Rendering /home/cjcolvar/Code/samvera/samvera-persona/app/views/samvera/persona/users/index.html.erb
10718
+ Rendered /home/cjcolvar/Code/samvera/samvera-persona/app/views/samvera/persona/users/_index_title.html.erb (Duration: 0.1ms | GC: 0.0ms)
10719
+ Rendered /home/cjcolvar/.asdf/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/devise-4.9.4/app/views/devise/shared/_error_messages.html.erb (Duration: 0.1ms | GC: 0.0ms)
10720
+ Rendered /home/cjcolvar/Code/samvera/samvera-persona/app/views/samvera/persona/users/index.html.erb (Duration: 5.0ms | GC: 0.1ms)
10721
+ TRANSACTION (0.1ms) rollback transaction
10722
+ TRANSACTION (0.0ms) begin transaction
10723
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10724
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-41@test.com"], ["LIMIT", 1]]
10725
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:17.077826"], ["updated_at", "2025-05-23 16:08:17.077826"], ["email", "email-41@test.com"], ["encrypted_password", "[FILTERED]"]]
10726
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10727
+ Processing by Samvera::Persona::UsersController#index as HTML
10728
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
10729
+ Rendering layout layouts/application.html.erb
10730
+ Rendering /home/cjcolvar/Code/samvera/samvera-persona/app/views/samvera/persona/users/index.html.erb within layouts/application
10731
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
10732
+ Rendered /home/cjcolvar/Code/samvera/samvera-persona/app/views/samvera/persona/users/index.html.erb within layouts/application (Duration: 0.1ms | GC: 0.0ms)
10733
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
10734
+ Rendered layout layouts/application.html.erb (Duration: 0.3ms | GC: 0.0ms)
10735
+ Completed 200 OK in 4ms (Views: 3.0ms | ActiveRecord: 0.2ms (1 query, 0 cached) | GC: 0.0ms)
10736
+ TRANSACTION (0.1ms) rollback transaction
10737
+ TRANSACTION (0.0ms) begin transaction
10738
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10739
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-42@test.com"], ["LIMIT", 1]]
10740
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:17.090979"], ["updated_at", "2025-05-23 16:08:17.090979"], ["email", "email-42@test.com"], ["encrypted_password", "[FILTERED]"]]
10741
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10742
+ Processing by Samvera::Persona::UsersController#destroy as HTML
10743
+ Parameters: {"id"=>"1"}
10744
+ Completed 401 Unauthorized in 2ms (ActiveRecord: 0.0ms (0 queries, 0 cached) | GC: 0.2ms)
10745
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
10746
+ TRANSACTION (0.1ms) rollback transaction
10747
+ TRANSACTION (0.0ms) begin transaction
10748
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10749
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-43@test.com"], ["LIMIT", 1]]
10750
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:17.107072"], ["updated_at", "2025-05-23 16:08:17.107072"], ["email", "email-43@test.com"], ["encrypted_password", "[FILTERED]"]]
10751
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10752
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10753
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-44@test.com"], ["LIMIT", 1]]
10754
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:17.110614"], ["updated_at", "2025-05-23 16:08:17.110614"], ["email", "email-44@test.com"], ["encrypted_password", "[FILTERED]"]]
10755
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10756
+ Processing by Samvera::Persona::UsersController#impersonate as HTML
10757
+ Parameters: {"id"=>"2"}
10758
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
10759
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
10760
+ Redirected to http://test.host/
10761
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms (2 queries, 0 cached) | GC: 0.0ms)
10762
+ TRANSACTION (0.1ms) rollback transaction
10763
+ TRANSACTION (0.1ms) begin transaction
10764
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10765
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-45@test.com"], ["LIMIT", 1]]
10766
+ User Create (0.2ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:17.118269"], ["updated_at", "2025-05-23 16:08:17.118269"], ["email", "email-45@test.com"], ["encrypted_password", "[FILTERED]"]]
10767
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10768
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10769
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-46@test.com"], ["LIMIT", 1]]
10770
+ User Create (0.2ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:17.121820"], ["updated_at", "2025-05-23 16:08:17.121820"], ["email", "email-46@test.com"], ["encrypted_password", "[FILTERED]"]]
10771
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10772
+ Processing by Samvera::Persona::UsersController#stop_impersonating as HTML
10773
+ Parameters: {"id"=>"2"}
10774
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
10775
+ Redirected to http://test.host/persona/users
10776
+ Completed 302 Found in 1ms (ActiveRecord: 0.1ms (1 query, 0 cached) | GC: 0.0ms)
10777
+ TRANSACTION (0.0ms) rollback transaction
10778
+ TRANSACTION (0.0ms) begin transaction
10779
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10780
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-47@test.com"], ["LIMIT", 1]]
10781
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:17.128994"], ["updated_at", "2025-05-23 16:08:17.128994"], ["email", "email-47@test.com"], ["encrypted_password", "[FILTERED]"]]
10782
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10783
+ Processing by Samvera::Persona::UsersController#destroy as HTML
10784
+ Parameters: {"id"=>"1"}
10785
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
10786
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
10787
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10788
+ User Update (0.2ms) UPDATE "users" SET "deleted_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["deleted_at", "2025-05-23 16:08:17.132146"], ["updated_at", "2025-05-23 16:08:17.132157"], ["id", 1]]
10789
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10790
+ Redirected to http://test.host/persona/users
10791
+ Completed 302 Found in 3ms (ActiveRecord: 0.4ms (3 queries, 0 cached) | GC: 0.0ms)
10792
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
10793
+ TRANSACTION (0.0ms) rollback transaction
10794
+ TRANSACTION (0.0ms) begin transaction
10795
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10796
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-48@test.com"], ["LIMIT", 1]]
10797
+ User Create (0.2ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:17.139170"], ["updated_at", "2025-05-23 16:08:17.139170"], ["email", "email-48@test.com"], ["encrypted_password", "[FILTERED]"]]
10798
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10799
+ Processing by Samvera::Persona::UsersController#destroy as HTML
10800
+ Parameters: {"id"=>"1"}
10801
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
10802
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
10803
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10804
+ User Update (0.2ms) UPDATE "users" SET "deleted_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["deleted_at", "2025-05-23 16:08:17.142024"], ["updated_at", "2025-05-23 16:08:17.142031"], ["id", 1]]
10805
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10806
+ Redirected to http://test.host/persona/users
10807
+ Completed 302 Found in 2ms (ActiveRecord: 0.4ms (3 queries, 0 cached) | GC: 0.0ms)
10808
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
10809
+ TRANSACTION (0.0ms) rollback transaction
10810
+ TRANSACTION (0.0ms) begin transaction
10811
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10812
+ User Exists? (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-49@test.com"], ["LIMIT", 1]]
10813
+ User Create (0.2ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:17.148691"], ["updated_at", "2025-05-23 16:08:17.148691"], ["email", "email-49@test.com"], ["encrypted_password", "[FILTERED]"]]
10814
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10815
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10816
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-50@test.com"], ["LIMIT", 1]]
10817
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:17.152374"], ["updated_at", "2025-05-23 16:08:17.152374"], ["email", "email-50@test.com"], ["encrypted_password", "[FILTERED]"]]
10818
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10819
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
10820
+ Processing by Samvera::Persona::UsersController#update as HTML
10821
+ Parameters: {"user"=>{"email"=>"new_email@example.com"}, "id"=>"2"}
10822
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
10823
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
10824
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10825
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL AND "users"."id" != ? LIMIT ? [["email", "new_email@example.com"], ["id", 2], ["LIMIT", 1]]
10826
+ User Update (0.1ms) UPDATE "users" SET "updated_at" = ?, "email" = ? WHERE "users"."id" = ? [["updated_at", "2025-05-23 16:08:17.157043"], ["email", "new_email@example.com"], ["id", 2]]
10827
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10828
+ Redirected to http://test.host/persona/users
10829
+ Completed 302 Found in 4ms (ActiveRecord: 0.5ms (4 queries, 0 cached) | GC: 0.0ms)
10830
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
10831
+ TRANSACTION (0.0ms) rollback transaction
10832
+ TRANSACTION (0.0ms) begin transaction
10833
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10834
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-51@test.com"], ["LIMIT", 1]]
10835
+ User Create (0.2ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:17.162654"], ["updated_at", "2025-05-23 16:08:17.162654"], ["email", "email-51@test.com"], ["encrypted_password", "[FILTERED]"]]
10836
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10837
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10838
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-52@test.com"], ["LIMIT", 1]]
10839
+ User Create (0.3ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:17.172546"], ["updated_at", "2025-05-23 16:08:17.172546"], ["email", "email-52@test.com"], ["encrypted_password", "[FILTERED]"]]
10840
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
10841
+ TRANSACTION (0.1ms) rollback transaction
10842
+ TRANSACTION (0.0ms) begin transaction
10843
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10844
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-53@test.com"], ["LIMIT", 1]]
10845
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:17.178148"], ["updated_at", "2025-05-23 16:08:17.178148"], ["email", "email-53@test.com"], ["encrypted_password", "[FILTERED]"]]
10846
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10847
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10848
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-54@test.com"], ["LIMIT", 1]]
10849
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:17.181676"], ["updated_at", "2025-05-23 16:08:17.181676"], ["email", "email-54@test.com"], ["encrypted_password", "[FILTERED]"]]
10850
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10851
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL
10852
+ TRANSACTION (0.0ms) rollback transaction
10853
+ TRANSACTION (0.0ms) begin transaction
10854
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10855
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-55@test.com"], ["LIMIT", 1]]
10856
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:17.187484"], ["updated_at", "2025-05-23 16:08:17.187484"], ["email", "email-55@test.com"], ["encrypted_password", "[FILTERED]"]]
10857
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10858
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10859
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-56@test.com"], ["LIMIT", 1]]
10860
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:17.190784"], ["updated_at", "2025-05-23 16:08:17.190784"], ["email", "email-56@test.com"], ["encrypted_password", "[FILTERED]"]]
10861
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10862
+ TRANSACTION (0.0ms) rollback transaction
10863
+ TRANSACTION (0.0ms) begin transaction
10864
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10865
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-57@test.com"], ["LIMIT", 1]]
10866
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:17.195461"], ["updated_at", "2025-05-23 16:08:17.195461"], ["email", "email-57@test.com"], ["encrypted_password", "[FILTERED]"]]
10867
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10868
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
10869
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-58@test.com"], ["LIMIT", 1]]
10870
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) RETURNING "id" [["created_at", "2025-05-23 16:08:17.198880"], ["updated_at", "2025-05-23 16:08:17.198880"], ["email", "email-58@test.com"], ["encrypted_password", "[FILTERED]"]]
10871
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
10872
+ TRANSACTION (0.0ms) rollback transaction
@@ -0,0 +1 @@
1
+ d69cfbedbdc87bc5bc45a43d7e61ff2a08a3cdedca34cc84c0f2b53f81094660f678ed9377805cfb054832c115820da6001a535498908a3effe927996d398792
metadata CHANGED
@@ -1,15 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: samvera-persona
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rob Kaufman
8
8
  - Lea Ann Bradford
9
- autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2024-11-13 00:00:00.000000000 Z
11
+ date: 1980-01-02 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: rails
@@ -20,7 +19,7 @@ dependencies:
20
19
  version: 5.2.4.3
21
20
  - - "<"
22
21
  - !ruby/object:Gem::Version
23
- version: '8.0'
22
+ version: '8.1'
24
23
  type: :runtime
25
24
  prerelease: false
26
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -30,7 +29,7 @@ dependencies:
30
29
  version: 5.2.4.3
31
30
  - - "<"
32
31
  - !ruby/object:Gem::Version
33
- version: '8.0'
32
+ version: '8.1'
34
33
  - !ruby/object:Gem::Dependency
35
34
  name: paranoia
36
35
  requirement: !ruby/object:Gem::Requirement
@@ -296,6 +295,7 @@ files:
296
295
  - spec/dummy/public/apple-touch-icon.png
297
296
  - spec/dummy/public/favicon.ico
298
297
  - spec/dummy/tmp/development_secret.txt
298
+ - spec/dummy/tmp/local_secret.txt
299
299
  - spec/factories/users.rb
300
300
  - spec/lib/samvera-persona_spec.rb
301
301
  - spec/presenters/samvera/persona/users_presenter_spec.rb
@@ -309,7 +309,6 @@ homepage: https://github.com/samvera-labs/samvera-persona
309
309
  licenses:
310
310
  - Apache-2.0
311
311
  metadata: {}
312
- post_install_message:
313
312
  rdoc_options: []
314
313
  require_paths:
315
314
  - lib
@@ -324,8 +323,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
324
323
  - !ruby/object:Gem::Version
325
324
  version: '0'
326
325
  requirements: []
327
- rubygems_version: 3.5.16
328
- signing_key:
326
+ rubygems_version: 3.6.9
329
327
  specification_version: 4
330
328
  summary: Summary of Samvera::Persona.
331
329
  test_files:
@@ -352,6 +350,7 @@ test_files:
352
350
  - spec/dummy/bin/setup
353
351
  - spec/dummy/bin/update
354
352
  - spec/dummy/bin/yarn
353
+ - spec/dummy/config.ru
355
354
  - spec/dummy/config/application.rb
356
355
  - spec/dummy/config/boot.rb
357
356
  - spec/dummy/config/cable.yml
@@ -377,7 +376,6 @@ test_files:
377
376
  - spec/dummy/config/routes.rb
378
377
  - spec/dummy/config/spring.rb
379
378
  - spec/dummy/config/storage.yml
380
- - spec/dummy/config.ru
381
379
  - spec/dummy/db/development.sqlite3
382
380
  - spec/dummy/db/migrate/20190513181646_create_users_for_engine_testing.rb
383
381
  - spec/dummy/db/migrate/20190628003608_add_devise_to_users.rb
@@ -393,6 +391,7 @@ test_files:
393
391
  - spec/dummy/public/apple-touch-icon.png
394
392
  - spec/dummy/public/favicon.ico
395
393
  - spec/dummy/tmp/development_secret.txt
394
+ - spec/dummy/tmp/local_secret.txt
396
395
  - spec/factories/users.rb
397
396
  - spec/lib/samvera-persona_spec.rb
398
397
  - spec/presenters/samvera/persona/users_presenter_spec.rb