samvera-persona 0.1.5 → 0.1.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/samvera-persona/engine.rb +1 -1
- data/lib/samvera-persona/version.rb +1 -1
- data/lib/samvera-persona.rb +9 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/test.log +852 -0
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 22bdbf0d7ddcc9d015cb2f914bd5db28853641595979a53fb6b903f6c356b19c
|
4
|
+
data.tar.gz: fc750acb576e08506115328e8424c7d0844ef07ccc2db2b2d95b0ff864569419
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '0924183183b1f1713fd3a8776ce8c079458db193e62c0ae45320399720e54183d9c19eb302d08f01734d63769c0b19b037cb5048992fe530746709db6727df3f'
|
7
|
+
data.tar.gz: ee8ef11b0ff8dde2a54d84a4f0d51eed920890bb6fd4da0c79b5038d2a14781910e7ebd119085bd99b87b5e0474777cd7c04d2fbd771475d3367ca683069cac3
|
@@ -48,7 +48,7 @@ module Samvera
|
|
48
48
|
end
|
49
49
|
|
50
50
|
config.to_prepare do
|
51
|
-
User.send :include, Samvera::Persona::SoftDeleteBehavior
|
51
|
+
User.send :include, Samvera::Persona::SoftDeleteBehavior if Samvera::Persona.soft_delete
|
52
52
|
User.send :include, Samvera::Persona::UsernameBehavior
|
53
53
|
end
|
54
54
|
|
data/lib/samvera-persona.rb
CHANGED
data/spec/dummy/db/test.sqlite3
CHANGED
Binary file
|
data/spec/dummy/log/test.log
CHANGED
@@ -17098,3 +17098,855 @@ Content-Transfer-Encoding: 7bit
|
|
17098
17098
|
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
17099
17099
|
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
17100
17100
|
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
17101
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
17102
|
+
[1m[35m (0.9ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "environment"]]
|
17103
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
17104
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "environment"]]
|
17105
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
17106
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "environment"]]
|
17107
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "users"[0m
|
17108
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
17109
|
+
[1m[35m (1.4ms)[0m [1m[35mCREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "deleted_at" datetime, "email" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "remember_created_at" datetime, "invitation_token" varchar, "invitation_created_at" datetime, "invitation_sent_at" datetime, "invitation_accepted_at" datetime, "invitation_limit" integer, "invited_by_type" varchar, "invited_by_id" integer, "invitations_count" integer DEFAULT 0)[0m
|
17110
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_users_on_deleted_at" ON "users" ("deleted_at")[0m
|
17111
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")[0m
|
17112
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE UNIQUE INDEX "index_users_on_invitation_token" ON "users" ("invitation_token")[0m
|
17113
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_users_on_invitations_count" ON "users" ("invitations_count")[0m
|
17114
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_users_on_invited_by_id" ON "users" ("invited_by_id")[0m
|
17115
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_users_on_invited_by_type_and_invited_by_id" ON "users" ("invited_by_type", "invited_by_id")[0m
|
17116
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")[0m
|
17117
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
17118
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
17119
|
+
[1m[35m (0.7ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (20190628003746)[0m
|
17120
|
+
[1m[35m (0.7ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES
|
17121
|
+
(20190513181646),
|
17122
|
+
(20190628003608),
|
17123
|
+
(20190520170817);
|
17124
|
+
|
17125
|
+
[0m
|
17126
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
17127
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
17128
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
17129
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.3ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2019-09-02 00:24:51.136480"], ["updated_at", "2019-09-02 00:24:51.136480"]]
|
17130
|
+
[1m[35m (0.7ms)[0m [1m[36mcommit transaction[0m
|
17131
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
17132
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
17133
|
+
[1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
17134
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
17135
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
17136
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
17137
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17138
|
+
[1m[36mUser Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-1@test.com"], ["LIMIT", 1]]
|
17139
|
+
[1m[36mUser Create (0.6ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:53.323926"], ["updated_at", "2019-09-02 00:24:53.323926"], ["email", "email-1@test.com"], ["encrypted_password", "$2a$04$65FlGNS299fvBiDd5/TgK.vQpi3390aZzH/yedbUwmT55hSC4ah3e"]]
|
17140
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17141
|
+
Processing by Samvera::Persona::UsersController#index as HTML
|
17142
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
17143
|
+
Rendering /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb within layouts/application
|
17144
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
17145
|
+
Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb within layouts/application (0.3ms)
|
17146
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
17147
|
+
Completed 200 OK in 25ms (Views: 18.2ms | ActiveRecord: 0.1ms)
|
17148
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
17149
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
17150
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17151
|
+
[1m[36mUser Exists (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-2@test.com"], ["LIMIT", 1]]
|
17152
|
+
[1m[36mUser Create (0.5ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:53.358490"], ["updated_at", "2019-09-02 00:24:53.358490"], ["email", "email-2@test.com"], ["encrypted_password", "$2a$04$De3rlX04G3U15JTkkcaLkeOVynNW0p1JRDmETC9mxICRDSg2lZw16"]]
|
17153
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17154
|
+
Processing by Samvera::Persona::UsersController#destroy as HTML
|
17155
|
+
Parameters: {"id"=>"1"}
|
17156
|
+
Completed 401 Unauthorized in 2ms (ActiveRecord: 0.0ms)
|
17157
|
+
[1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
17158
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
17159
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
17160
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17161
|
+
[1m[36mUser Exists (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-3@test.com"], ["LIMIT", 1]]
|
17162
|
+
[1m[36mUser Create (0.5ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:53.394393"], ["updated_at", "2019-09-02 00:24:53.394393"], ["email", "email-3@test.com"], ["encrypted_password", "$2a$04$apXIvz9nz2rBSxoGUd2e4eaCz9JUxNtUYu5/0Wfy/Sm2n8mZ/0uwW"]]
|
17163
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17164
|
+
Processing by Samvera::Persona::UsersController#destroy as HTML
|
17165
|
+
Parameters: {"id"=>"1"}
|
17166
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
17167
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
17168
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17169
|
+
[1m[36mUser Update (0.2ms)[0m [1m[33mUPDATE "users" SET "deleted_at" = ?, "updated_at" = ? WHERE "users"."id" = ?[0m [["deleted_at", "2019-09-02 00:24:53.399377"], ["updated_at", "2019-09-02 00:24:53.399401"], ["id", 1]]
|
17170
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17171
|
+
Redirected to http://test.host/persona/users
|
17172
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.5ms)
|
17173
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
17174
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
17175
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
17176
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17177
|
+
[1m[36mUser Exists (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-4@test.com"], ["LIMIT", 1]]
|
17178
|
+
[1m[36mUser Create (0.5ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:53.408800"], ["updated_at", "2019-09-02 00:24:53.408800"], ["email", "email-4@test.com"], ["encrypted_password", "$2a$04$35hncgiyhTC5SI6iIwvYMu9KkOu4G6geu0TlVMqaDAT2lh5WQu5EK"]]
|
17179
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17180
|
+
Processing by Samvera::Persona::UsersController#destroy as HTML
|
17181
|
+
Parameters: {"id"=>"1"}
|
17182
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
17183
|
+
[1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
17184
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17185
|
+
[1m[36mUser Update (0.1ms)[0m [1m[33mUPDATE "users" SET "deleted_at" = ?, "updated_at" = ? WHERE "users"."id" = ?[0m [["deleted_at", "2019-09-02 00:24:53.412698"], ["updated_at", "2019-09-02 00:24:53.412709"], ["id", 1]]
|
17186
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17187
|
+
Redirected to http://test.host/persona/users
|
17188
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
|
17189
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
17190
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
17191
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
17192
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17193
|
+
[1m[36mUser Exists (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-5@test.com"], ["LIMIT", 1]]
|
17194
|
+
[1m[36mUser Create (0.6ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:53.419288"], ["updated_at", "2019-09-02 00:24:53.419288"], ["email", "email-5@test.com"], ["encrypted_password", "$2a$04$jfia461CQgULzIB8MbE9cuFjKUNz.JiWOOPI0mcZnuNpxTJ883Msa"]]
|
17195
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17196
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17197
|
+
[1m[36mUser Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-6@test.com"], ["LIMIT", 1]]
|
17198
|
+
[1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:53.423645"], ["updated_at", "2019-09-02 00:24:53.423645"], ["email", "email-6@test.com"], ["encrypted_password", "$2a$04$oaTlcV0lc4rFMB42umAJQ.i6VHy.QkkHVmQMovjShFRH/6F7Qx3my"]]
|
17199
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17200
|
+
Processing by Samvera::Persona::UsersController#stop_impersonating as HTML
|
17201
|
+
Parameters: {"id"=>"2"}
|
17202
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
17203
|
+
Redirected to http://test.host/persona/users
|
17204
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
|
17205
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
17206
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
17207
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17208
|
+
[1m[36mUser Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-7@test.com"], ["LIMIT", 1]]
|
17209
|
+
[1m[36mUser Create (0.5ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:53.431254"], ["updated_at", "2019-09-02 00:24:53.431254"], ["email", "email-7@test.com"], ["encrypted_password", "$2a$04$gGLVBlhPOXcZVVCsRJQW0uI4anPC59N2nXEpYbeMvmgU6q12G4zT2"]]
|
17210
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17211
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17212
|
+
[1m[36mUser Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-8@test.com"], ["LIMIT", 1]]
|
17213
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:53.434851"], ["updated_at", "2019-09-02 00:24:53.434851"], ["email", "email-8@test.com"], ["encrypted_password", "$2a$04$.ZMWvJNfcwrajNBptIb8K.j85TVlgHo0/dMVcEjkaKy2UyXWg32jK"]]
|
17214
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17215
|
+
Processing by Samvera::Persona::UsersController#impersonate as HTML
|
17216
|
+
Parameters: {"id"=>"2"}
|
17217
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
17218
|
+
[1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
17219
|
+
Redirected to http://test.host/
|
17220
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.1ms)
|
17221
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
17222
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
17223
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17224
|
+
[1m[36mUser Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-9@test.com"], ["LIMIT", 1]]
|
17225
|
+
[1m[36mUser Create (0.7ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:53.442478"], ["updated_at", "2019-09-02 00:24:53.442478"], ["email", "email-9@test.com"], ["encrypted_password", "$2a$04$W/s2mCsStGmeq/N4ZPF8.eSTA8zAnk48O7yDCU8/8jqH5YiFt7TQK"]]
|
17226
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17227
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17228
|
+
[1m[36mUser Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-10@test.com"], ["LIMIT", 1]]
|
17229
|
+
[1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:53.448184"], ["updated_at", "2019-09-02 00:24:53.448184"], ["email", "email-10@test.com"], ["encrypted_password", "$2a$04$F5p5lQa//lf/ahOq3yjEmuxpyl4vuyJYXywKONhIigJv7gxvxuISe"]]
|
17230
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17231
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
17232
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
17233
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17234
|
+
[1m[36mUser Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-11@test.com"], ["LIMIT", 1]]
|
17235
|
+
[1m[36mUser Create (0.5ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:53.454826"], ["updated_at", "2019-09-02 00:24:53.454826"], ["email", "email-11@test.com"], ["encrypted_password", "$2a$04$ib.u9E9HQtzgEnVwlcuB5.QlMOI6kiE1oX5fT3gUA4WwCfmvuOn8C"]]
|
17236
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17237
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17238
|
+
[1m[36mUser Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-12@test.com"], ["LIMIT", 1]]
|
17239
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:53.458579"], ["updated_at", "2019-09-02 00:24:53.458579"], ["email", "email-12@test.com"], ["encrypted_password", "$2a$04$TUWby8CVfDltM3SyRNAdNufnaSovu.ErMJFAWjoGwoFeKlGKc3v4C"]]
|
17240
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17241
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL[0m
|
17242
|
+
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
17243
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
17244
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17245
|
+
[1m[36mUser Exists (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-13@test.com"], ["LIMIT", 1]]
|
17246
|
+
[1m[36mUser Create (0.7ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:53.464563"], ["updated_at", "2019-09-02 00:24:53.464563"], ["email", "email-13@test.com"], ["encrypted_password", "$2a$04$d4ypoLTouB.bLVhAbQRiJ.5ydNgUCP9.G5PjOy3hT3i7103vIGQHe"]]
|
17247
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17248
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17249
|
+
[1m[36mUser Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-14@test.com"], ["LIMIT", 1]]
|
17250
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:53.469756"], ["updated_at", "2019-09-02 00:24:53.469756"], ["email", "email-14@test.com"], ["encrypted_password", "$2a$04$6FlD.gn0PfyQu7zzuDIavea5PJjFw4tJoVxwYPG/R1eocfxYemFoK"]]
|
17251
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17252
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
17253
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
17254
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17255
|
+
[1m[36mUser Exists (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-15@test.com"], ["LIMIT", 1]]
|
17256
|
+
[1m[36mUser Create (0.5ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:53.487334"], ["updated_at", "2019-09-02 00:24:53.487334"], ["email", "email-15@test.com"], ["encrypted_password", "$2a$04$SQjSuEO9AD0DFM8Oy/cNGezkrkAc2Fm0nPNnYL1oZF4ob4xonb86G"]]
|
17257
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17258
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17259
|
+
[1m[36mUser Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-16@test.com"], ["LIMIT", 1]]
|
17260
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:53.491506"], ["updated_at", "2019-09-02 00:24:53.491506"], ["email", "email-16@test.com"], ["encrypted_password", "$2a$04$1k.zO/gNqewg.FZBticrdOI8XRyMHpZvbM6snRnR4Vs1631Jpjl5G"]]
|
17261
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17262
|
+
[1m[35m (0.7ms)[0m [1m[31mrollback transaction[0m
|
17263
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
17264
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17265
|
+
[1m[36mUser Exists (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-17@test.com"], ["LIMIT", 1]]
|
17266
|
+
[1m[36mUser Create (0.5ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:53.499554"], ["updated_at", "2019-09-02 00:24:53.499554"], ["email", "email-17@test.com"], ["encrypted_password", "$2a$04$f342UfkE9uq8mU9P.LSHtevqmzp0yuHHC9yYCKAPO7tTxIF4nPIO."]]
|
17267
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17268
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17269
|
+
[1m[36mUser Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-18@test.com"], ["LIMIT", 1]]
|
17270
|
+
[1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:53.504383"], ["updated_at", "2019-09-02 00:24:53.504383"], ["email", "email-18@test.com"], ["encrypted_password", "$2a$04$67KMqfHEsjUy5gAfrh3YyuHq6uDDgCI1Grlw4fOQ1WUN1fJ1zV2zK"]]
|
17271
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17272
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17273
|
+
[1m[36mUser Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-19@test.com"], ["LIMIT", 1]]
|
17274
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:53.508388"], ["updated_at", "2019-09-02 00:24:53.508388"], ["email", "email-19@test.com"], ["encrypted_password", "$2a$04$G3iTYfPBlciPf.V3cEz60.guztHPsXxRnmhxt/q5y.ZE1X.AONEYG"]]
|
17275
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17276
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17277
|
+
[1m[36mUser Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-20@test.com"], ["LIMIT", 1]]
|
17278
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:53.512050"], ["updated_at", "2019-09-02 00:24:53.512050"], ["email", "email-20@test.com"], ["encrypted_password", "$2a$04$QIK/1ncCn5YfV3ZT6/9aLe8BKI/iReh9HvZxyjiz5jE2s1JWkRJmK"]]
|
17279
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17280
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17281
|
+
[1m[36mUser Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-21@test.com"], ["LIMIT", 1]]
|
17282
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:53.515461"], ["updated_at", "2019-09-02 00:24:53.515461"], ["email", "email-21@test.com"], ["encrypted_password", "$2a$04$zu9i9WEy/K6wfBtSbadSruPHn7MFRmZUXc3FhLV111xgiTx8WZFgq"]]
|
17283
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17284
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17285
|
+
[1m[36mUser Exists (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-22@test.com"], ["LIMIT", 1]]
|
17286
|
+
[1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:53.519580"], ["updated_at", "2019-09-02 00:24:53.519580"], ["email", "email-22@test.com"], ["encrypted_password", "$2a$04$OdY8odgAKWRL9k8CL8FVOuaPhvmOub4ryggJzqKJlrb1M0.T4I8va"]]
|
17287
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17288
|
+
[1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."email" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["email", "email-23@test.com"], ["LIMIT", 1]]
|
17289
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."invitation_token" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["invitation_token", "8f183d1de5a343c75e5dbab6c46001bf65175622dd42198a8a81cf58030111da"], ["LIMIT", 1]]
|
17290
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17291
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password", "invitation_token", "invitation_created_at", "invitation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:53.618601"], ["updated_at", "2019-09-02 00:24:53.618601"], ["email", "email-23@test.com"], ["encrypted_password", "$2a$04$CcxkWqDMWGtHJLCxeipzCee3KZF.ES9.vRNksSxqfh7hoNmIOoDqW"], ["invitation_token", "8f183d1de5a343c75e5dbab6c46001bf65175622dd42198a8a81cf58030111da"], ["invitation_created_at", "2019-09-02 00:24:53.618311"], ["invitation_sent_at", "2019-09-02 00:24:53.618311"]]
|
17292
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17293
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
|
17294
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (2.0ms)
|
17295
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
|
17296
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.6ms)
|
17297
|
+
Devise::Mailer#invitation_instructions: processed outbound mail in 188.6ms
|
17298
|
+
Sent mail to email-23@test.com (8.8ms)
|
17299
|
+
Date: Sun, 01 Sep 2019 17:24:53 -0700
|
17300
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
17301
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
17302
|
+
To: email-23@test.com
|
17303
|
+
Message-ID: <5d6c6155c6aa8_175ef3ff231036e30379cc@citron.local.mail>
|
17304
|
+
Subject: Invitation instructions
|
17305
|
+
Mime-Version: 1.0
|
17306
|
+
Content-Type: multipart/alternative;
|
17307
|
+
boundary="--==_mimepart_5d6c6155c5297_175ef3ff231036e30378e8";
|
17308
|
+
charset=UTF-8
|
17309
|
+
Content-Transfer-Encoding: 7bit
|
17310
|
+
|
17311
|
+
|
17312
|
+
----==_mimepart_5d6c6155c5297_175ef3ff231036e30378e8
|
17313
|
+
Content-Type: text/plain;
|
17314
|
+
charset=UTF-8
|
17315
|
+
Content-Transfer-Encoding: 7bit
|
17316
|
+
|
17317
|
+
Hello email-23@test.com
|
17318
|
+
|
17319
|
+
Someone has invited you to http://localhost:3000/, you can accept it through the link below.
|
17320
|
+
|
17321
|
+
http://localhost:3000/users/invitation/accept?invitation_token=x7MTWKrCGLqG4oJ2joSJ
|
17322
|
+
|
17323
|
+
|
17324
|
+
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.
|
17325
|
+
|
17326
|
+
----==_mimepart_5d6c6155c5297_175ef3ff231036e30378e8
|
17327
|
+
Content-Type: text/html;
|
17328
|
+
charset=UTF-8
|
17329
|
+
Content-Transfer-Encoding: 7bit
|
17330
|
+
|
17331
|
+
<p>Hello email-23@test.com</p>
|
17332
|
+
|
17333
|
+
<p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
|
17334
|
+
|
17335
|
+
<p><a href="http://localhost:3000/users/invitation/accept?invitation_token=x7MTWKrCGLqG4oJ2joSJ">Accept invitation</a></p>
|
17336
|
+
|
17337
|
+
|
17338
|
+
<p>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.</p>
|
17339
|
+
|
17340
|
+
----==_mimepart_5d6c6155c5297_175ef3ff231036e30378e8--
|
17341
|
+
|
17342
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."email" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["email", "email-24@test.com"], ["LIMIT", 1]]
|
17343
|
+
[1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."invitation_token" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["invitation_token", "3b08a9d27dcfc3d7494a913a020205cccb321c82cb6ccf44c1054b9a273150ae"], ["LIMIT", 1]]
|
17344
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17345
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password", "invitation_token", "invitation_created_at", "invitation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:53.820079"], ["updated_at", "2019-09-02 00:24:53.820079"], ["email", "email-24@test.com"], ["encrypted_password", "$2a$04$eu7PocQy.2Qkk/lqRt7oTubZyW.ERb2NFQGthXWiXtzXP8yoiB78G"], ["invitation_token", "3b08a9d27dcfc3d7494a913a020205cccb321c82cb6ccf44c1054b9a273150ae"], ["invitation_created_at", "2019-09-02 00:24:53.819792"], ["invitation_sent_at", "2019-09-02 00:24:53.819792"]]
|
17346
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17347
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
|
17348
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (0.4ms)
|
17349
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
|
17350
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.3ms)
|
17351
|
+
Devise::Mailer#invitation_instructions: processed outbound mail in 2.3ms
|
17352
|
+
Sent mail to email-24@test.com (2.1ms)
|
17353
|
+
Date: Sun, 01 Sep 2019 17:24:53 -0700
|
17354
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
17355
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
17356
|
+
To: email-24@test.com
|
17357
|
+
Message-ID: <5d6c6155c9267_175ef3ff231036e3038195@citron.local.mail>
|
17358
|
+
Subject: Invitation instructions
|
17359
|
+
Mime-Version: 1.0
|
17360
|
+
Content-Type: multipart/alternative;
|
17361
|
+
boundary="--==_mimepart_5d6c6155c8cf0_175ef3ff231036e30380d8";
|
17362
|
+
charset=UTF-8
|
17363
|
+
Content-Transfer-Encoding: 7bit
|
17364
|
+
|
17365
|
+
|
17366
|
+
----==_mimepart_5d6c6155c8cf0_175ef3ff231036e30380d8
|
17367
|
+
Content-Type: text/plain;
|
17368
|
+
charset=UTF-8
|
17369
|
+
Content-Transfer-Encoding: 7bit
|
17370
|
+
|
17371
|
+
Hello email-24@test.com
|
17372
|
+
|
17373
|
+
Someone has invited you to http://localhost:3000/, you can accept it through the link below.
|
17374
|
+
|
17375
|
+
http://localhost:3000/users/invitation/accept?invitation_token=9JWBrFMsF4JWNWLf6Ads
|
17376
|
+
|
17377
|
+
|
17378
|
+
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.
|
17379
|
+
|
17380
|
+
----==_mimepart_5d6c6155c8cf0_175ef3ff231036e30380d8
|
17381
|
+
Content-Type: text/html;
|
17382
|
+
charset=UTF-8
|
17383
|
+
Content-Transfer-Encoding: 7bit
|
17384
|
+
|
17385
|
+
<p>Hello email-24@test.com</p>
|
17386
|
+
|
17387
|
+
<p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
|
17388
|
+
|
17389
|
+
<p><a href="http://localhost:3000/users/invitation/accept?invitation_token=9JWBrFMsF4JWNWLf6Ads">Accept invitation</a></p>
|
17390
|
+
|
17391
|
+
|
17392
|
+
<p>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.</p>
|
17393
|
+
|
17394
|
+
----==_mimepart_5d6c6155c8cf0_175ef3ff231036e30380d8--
|
17395
|
+
|
17396
|
+
Rendering /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb
|
17397
|
+
Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/_index_title.html.erb (0.9ms)
|
17398
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise-4.6.2/app/views/devise/shared/_error_messages.html.erb (0.5ms)
|
17399
|
+
Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb (195.0ms)
|
17400
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
17401
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
17402
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17403
|
+
[1m[36mUser Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-25@test.com"], ["LIMIT", 1]]
|
17404
|
+
[1m[36mUser Create (0.4ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:54.040091"], ["updated_at", "2019-09-02 00:24:54.040091"], ["email", "email-25@test.com"], ["encrypted_password", "$2a$04$.cgSaCJL5/ISxfyLGcWuXuIEWQUttFGd15xK3AJ1ayCdf9rkCb.ei"]]
|
17405
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17406
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17407
|
+
[1m[36mUser Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-26@test.com"], ["LIMIT", 1]]
|
17408
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:54.043032"], ["updated_at", "2019-09-02 00:24:54.043032"], ["email", "email-26@test.com"], ["encrypted_password", "$2a$04$uux0f9BlkwmAfcfgSE9We.U4iNe4msMZk6m8CTIydlyM866Ci8xc."]]
|
17409
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17410
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17411
|
+
[1m[36mUser Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-27@test.com"], ["LIMIT", 1]]
|
17412
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:54.045781"], ["updated_at", "2019-09-02 00:24:54.045781"], ["email", "email-27@test.com"], ["encrypted_password", "$2a$04$0khddm0LlAAMsJJrklJyquf7JleS2hKdadhaS99WRwH3WIi7.ClhO"]]
|
17413
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17414
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17415
|
+
[1m[36mUser Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-28@test.com"], ["LIMIT", 1]]
|
17416
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:54.048505"], ["updated_at", "2019-09-02 00:24:54.048505"], ["email", "email-28@test.com"], ["encrypted_password", "$2a$04$t3hwgNFQabr0moj7sPp2X.Nd.THK5/B01KoPfF9quTHPunnVMXZuy"]]
|
17417
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17418
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17419
|
+
[1m[36mUser Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-29@test.com"], ["LIMIT", 1]]
|
17420
|
+
[1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:54.051209"], ["updated_at", "2019-09-02 00:24:54.051209"], ["email", "email-29@test.com"], ["encrypted_password", "$2a$04$8YEowtq1/2bAuluqOrk5ouwYSYPFeEv1BeX.iqCCDZzheXfzQ3bv2"]]
|
17421
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17422
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17423
|
+
[1m[36mUser Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-30@test.com"], ["LIMIT", 1]]
|
17424
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:54.054988"], ["updated_at", "2019-09-02 00:24:54.054988"], ["email", "email-30@test.com"], ["encrypted_password", "$2a$04$ih8Ve74atPEilaO.Sda0AecjayNIlrhOeJIuJOBTcPoL//4ASF.fa"]]
|
17425
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17426
|
+
[1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."email" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["email", "email-31@test.com"], ["LIMIT", 1]]
|
17427
|
+
[1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."invitation_token" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["invitation_token", "1103a7decc303f04237906793f7c11ce48930ebfaa1a020d6a48657907186537"], ["LIMIT", 1]]
|
17428
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17429
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password", "invitation_token", "invitation_created_at", "invitation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:54.058865"], ["updated_at", "2019-09-02 00:24:54.058865"], ["email", "email-31@test.com"], ["encrypted_password", "$2a$04$feh7SAadGw6FWcZMUOnuKeRRnLZZdgysfhSdxrTR.Bq8DkguNoaQG"], ["invitation_token", "1103a7decc303f04237906793f7c11ce48930ebfaa1a020d6a48657907186537"], ["invitation_created_at", "2019-09-02 00:24:54.058588"], ["invitation_sent_at", "2019-09-02 00:24:54.058588"]]
|
17430
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17431
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
|
17432
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (0.5ms)
|
17433
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
|
17434
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.4ms)
|
17435
|
+
Devise::Mailer#invitation_instructions: processed outbound mail in 2.7ms
|
17436
|
+
Sent mail to email-31@test.com (2.5ms)
|
17437
|
+
Date: Sun, 01 Sep 2019 17:24:54 -0700
|
17438
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
17439
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
17440
|
+
To: email-31@test.com
|
17441
|
+
Message-ID: <5d6c6156f737_175ef3ff231036e30383aa@citron.local.mail>
|
17442
|
+
Subject: Invitation instructions
|
17443
|
+
Mime-Version: 1.0
|
17444
|
+
Content-Type: multipart/alternative;
|
17445
|
+
boundary="--==_mimepart_5d6c6156f0fd_175ef3ff231036e3038289";
|
17446
|
+
charset=UTF-8
|
17447
|
+
Content-Transfer-Encoding: 7bit
|
17448
|
+
|
17449
|
+
|
17450
|
+
----==_mimepart_5d6c6156f0fd_175ef3ff231036e3038289
|
17451
|
+
Content-Type: text/plain;
|
17452
|
+
charset=UTF-8
|
17453
|
+
Content-Transfer-Encoding: 7bit
|
17454
|
+
|
17455
|
+
Hello email-31@test.com
|
17456
|
+
|
17457
|
+
Someone has invited you to http://localhost:3000/, you can accept it through the link below.
|
17458
|
+
|
17459
|
+
http://localhost:3000/users/invitation/accept?invitation_token=5A2zJDQYZSDv9uTufZY6
|
17460
|
+
|
17461
|
+
|
17462
|
+
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.
|
17463
|
+
|
17464
|
+
----==_mimepart_5d6c6156f0fd_175ef3ff231036e3038289
|
17465
|
+
Content-Type: text/html;
|
17466
|
+
charset=UTF-8
|
17467
|
+
Content-Transfer-Encoding: 7bit
|
17468
|
+
|
17469
|
+
<p>Hello email-31@test.com</p>
|
17470
|
+
|
17471
|
+
<p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
|
17472
|
+
|
17473
|
+
<p><a href="http://localhost:3000/users/invitation/accept?invitation_token=5A2zJDQYZSDv9uTufZY6">Accept invitation</a></p>
|
17474
|
+
|
17475
|
+
|
17476
|
+
<p>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.</p>
|
17477
|
+
|
17478
|
+
----==_mimepart_5d6c6156f0fd_175ef3ff231036e3038289--
|
17479
|
+
|
17480
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."email" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["email", "email-32@test.com"], ["LIMIT", 1]]
|
17481
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."invitation_token" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["invitation_token", "0f6b5cddc5a19221bbd2eefa1a86ab88eafa0c87680cdb690cf05c4c50575be2"], ["LIMIT", 1]]
|
17482
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17483
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password", "invitation_token", "invitation_created_at", "invitation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:54.068552"], ["updated_at", "2019-09-02 00:24:54.068552"], ["email", "email-32@test.com"], ["encrypted_password", "$2a$04$JjYmNq9T17icov3bDf90jeTV/cJlBJu33lWZuyl.2zjw3C72vJF9a"], ["invitation_token", "0f6b5cddc5a19221bbd2eefa1a86ab88eafa0c87680cdb690cf05c4c50575be2"], ["invitation_created_at", "2019-09-02 00:24:54.068187"], ["invitation_sent_at", "2019-09-02 00:24:54.068187"]]
|
17484
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17485
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
|
17486
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (0.5ms)
|
17487
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
|
17488
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.3ms)
|
17489
|
+
Devise::Mailer#invitation_instructions: processed outbound mail in 2.7ms
|
17490
|
+
Sent mail to email-32@test.com (2.4ms)
|
17491
|
+
Date: Sun, 01 Sep 2019 17:24:54 -0700
|
17492
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
17493
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
17494
|
+
To: email-32@test.com
|
17495
|
+
Message-ID: <5d6c615611da2_175ef3ff231036e303853@citron.local.mail>
|
17496
|
+
Subject: Invitation instructions
|
17497
|
+
Mime-Version: 1.0
|
17498
|
+
Content-Type: multipart/alternative;
|
17499
|
+
boundary="--==_mimepart_5d6c615611784_175ef3ff231036e3038466";
|
17500
|
+
charset=UTF-8
|
17501
|
+
Content-Transfer-Encoding: 7bit
|
17502
|
+
|
17503
|
+
|
17504
|
+
----==_mimepart_5d6c615611784_175ef3ff231036e3038466
|
17505
|
+
Content-Type: text/plain;
|
17506
|
+
charset=UTF-8
|
17507
|
+
Content-Transfer-Encoding: 7bit
|
17508
|
+
|
17509
|
+
Hello email-32@test.com
|
17510
|
+
|
17511
|
+
Someone has invited you to http://localhost:3000/, you can accept it through the link below.
|
17512
|
+
|
17513
|
+
http://localhost:3000/users/invitation/accept?invitation_token=MXjD4NKs2myH9U4zExt2
|
17514
|
+
|
17515
|
+
|
17516
|
+
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.
|
17517
|
+
|
17518
|
+
----==_mimepart_5d6c615611784_175ef3ff231036e3038466
|
17519
|
+
Content-Type: text/html;
|
17520
|
+
charset=UTF-8
|
17521
|
+
Content-Transfer-Encoding: 7bit
|
17522
|
+
|
17523
|
+
<p>Hello email-32@test.com</p>
|
17524
|
+
|
17525
|
+
<p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
|
17526
|
+
|
17527
|
+
<p><a href="http://localhost:3000/users/invitation/accept?invitation_token=MXjD4NKs2myH9U4zExt2">Accept invitation</a></p>
|
17528
|
+
|
17529
|
+
|
17530
|
+
<p>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.</p>
|
17531
|
+
|
17532
|
+
----==_mimepart_5d6c615611784_175ef3ff231036e3038466--
|
17533
|
+
|
17534
|
+
Rendering /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb
|
17535
|
+
Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/_index_title.html.erb (0.2ms)
|
17536
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise-4.6.2/app/views/devise/shared/_error_messages.html.erb (0.1ms)
|
17537
|
+
Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb (7.8ms)
|
17538
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
17539
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
17540
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17541
|
+
[1m[36mUser Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-33@test.com"], ["LIMIT", 1]]
|
17542
|
+
[1m[36mUser Create (0.4ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:54.089169"], ["updated_at", "2019-09-02 00:24:54.089169"], ["email", "email-33@test.com"], ["encrypted_password", "$2a$04$2H4xELKdIeSFE0hAgBBC8uP7vUKeWuhR9sw/8xNHIxzihFPuzQAcy"]]
|
17543
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17544
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17545
|
+
[1m[36mUser Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-34@test.com"], ["LIMIT", 1]]
|
17546
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:54.092226"], ["updated_at", "2019-09-02 00:24:54.092226"], ["email", "email-34@test.com"], ["encrypted_password", "$2a$04$YyB6BaOhNovw.o57Teh4U.7nA0CO/Ge.o.TEGaX82406TXMQ3z3/q"]]
|
17547
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17548
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17549
|
+
[1m[36mUser Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-35@test.com"], ["LIMIT", 1]]
|
17550
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:54.095093"], ["updated_at", "2019-09-02 00:24:54.095093"], ["email", "email-35@test.com"], ["encrypted_password", "$2a$04$Q1M3toAa1iPVwUYivFD2SOblr/D/Tor4EklF0J0JO2Z1i3CYLUP9q"]]
|
17551
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17552
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17553
|
+
[1m[36mUser Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-36@test.com"], ["LIMIT", 1]]
|
17554
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:54.098113"], ["updated_at", "2019-09-02 00:24:54.098113"], ["email", "email-36@test.com"], ["encrypted_password", "$2a$04$YiZbpOTS7WcUMcu02lqaG.ZxZt3fswKR.5MXOiGq6FDKhabFBFHDW"]]
|
17555
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17556
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17557
|
+
[1m[36mUser Exists (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-37@test.com"], ["LIMIT", 1]]
|
17558
|
+
[1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:54.101454"], ["updated_at", "2019-09-02 00:24:54.101454"], ["email", "email-37@test.com"], ["encrypted_password", "$2a$04$40.9JvdD8RHXDs1azQyrF.m4K/JMMhtfFmgLqgk8M0g9u.j5UQwDW"]]
|
17559
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17560
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17561
|
+
[1m[36mUser Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-38@test.com"], ["LIMIT", 1]]
|
17562
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:54.105623"], ["updated_at", "2019-09-02 00:24:54.105623"], ["email", "email-38@test.com"], ["encrypted_password", "$2a$04$bDzAXnTqCeUGzSDJUJQPHeLOGjVwsyXsqRoVAYGIz9EFqvMQdxV3G"]]
|
17563
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17564
|
+
[1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."email" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["email", "email-39@test.com"], ["LIMIT", 1]]
|
17565
|
+
[1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."invitation_token" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["invitation_token", "31ae1ceac3ea97dad0478b547eff6fba6fed1cb8870439e8f8c0a48cdbfd9ebc"], ["LIMIT", 1]]
|
17566
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17567
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password", "invitation_token", "invitation_created_at", "invitation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:54.109834"], ["updated_at", "2019-09-02 00:24:54.109834"], ["email", "email-39@test.com"], ["encrypted_password", "$2a$04$gwHaA1ShmpGINQxWtQmkfOTcrNW6uhO5p6WOASCsAQT3qEYg11rsO"], ["invitation_token", "31ae1ceac3ea97dad0478b547eff6fba6fed1cb8870439e8f8c0a48cdbfd9ebc"], ["invitation_created_at", "2019-09-02 00:24:54.109536"], ["invitation_sent_at", "2019-09-02 00:24:54.109536"]]
|
17568
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17569
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
|
17570
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (0.5ms)
|
17571
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
|
17572
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.4ms)
|
17573
|
+
Devise::Mailer#invitation_instructions: processed outbound mail in 3.2ms
|
17574
|
+
Sent mail to email-39@test.com (3.0ms)
|
17575
|
+
Date: Sun, 01 Sep 2019 17:24:54 -0700
|
17576
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
17577
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
17578
|
+
To: email-39@test.com
|
17579
|
+
Message-ID: <5d6c61561c16f_175ef3ff231036e303879a@citron.local.mail>
|
17580
|
+
Subject: Invitation instructions
|
17581
|
+
Mime-Version: 1.0
|
17582
|
+
Content-Type: multipart/alternative;
|
17583
|
+
boundary="--==_mimepart_5d6c61561b95c_175ef3ff231036e303869b";
|
17584
|
+
charset=UTF-8
|
17585
|
+
Content-Transfer-Encoding: 7bit
|
17586
|
+
|
17587
|
+
|
17588
|
+
----==_mimepart_5d6c61561b95c_175ef3ff231036e303869b
|
17589
|
+
Content-Type: text/plain;
|
17590
|
+
charset=UTF-8
|
17591
|
+
Content-Transfer-Encoding: 7bit
|
17592
|
+
|
17593
|
+
Hello email-39@test.com
|
17594
|
+
|
17595
|
+
Someone has invited you to http://localhost:3000/, you can accept it through the link below.
|
17596
|
+
|
17597
|
+
http://localhost:3000/users/invitation/accept?invitation_token=KLqeUhzgGiGytQHu9kRm
|
17598
|
+
|
17599
|
+
|
17600
|
+
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.
|
17601
|
+
|
17602
|
+
----==_mimepart_5d6c61561b95c_175ef3ff231036e303869b
|
17603
|
+
Content-Type: text/html;
|
17604
|
+
charset=UTF-8
|
17605
|
+
Content-Transfer-Encoding: 7bit
|
17606
|
+
|
17607
|
+
<p>Hello email-39@test.com</p>
|
17608
|
+
|
17609
|
+
<p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
|
17610
|
+
|
17611
|
+
<p><a href="http://localhost:3000/users/invitation/accept?invitation_token=KLqeUhzgGiGytQHu9kRm">Accept invitation</a></p>
|
17612
|
+
|
17613
|
+
|
17614
|
+
<p>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.</p>
|
17615
|
+
|
17616
|
+
----==_mimepart_5d6c61561b95c_175ef3ff231036e303869b--
|
17617
|
+
|
17618
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."email" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["email", "email-40@test.com"], ["LIMIT", 1]]
|
17619
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."invitation_token" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["invitation_token", "ba70aa4c531b0349232c6484b1e5a0f5a5ef48d02d996021de61ef7ab6ea6336"], ["LIMIT", 1]]
|
17620
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17621
|
+
[1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password", "invitation_token", "invitation_created_at", "invitation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:54.122435"], ["updated_at", "2019-09-02 00:24:54.122435"], ["email", "email-40@test.com"], ["encrypted_password", "$2a$04$xuhgEwSgIR54xvvzMcgGRenPGwIH.6NRh.F/aBuhr/tKXkal7bpru"], ["invitation_token", "ba70aa4c531b0349232c6484b1e5a0f5a5ef48d02d996021de61ef7ab6ea6336"], ["invitation_created_at", "2019-09-02 00:24:54.122058"], ["invitation_sent_at", "2019-09-02 00:24:54.122058"]]
|
17622
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17623
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
|
17624
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (0.6ms)
|
17625
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
|
17626
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.4ms)
|
17627
|
+
Devise::Mailer#invitation_instructions: processed outbound mail in 3.7ms
|
17628
|
+
Sent mail to email-40@test.com (3.0ms)
|
17629
|
+
Date: Sun, 01 Sep 2019 17:24:54 -0700
|
17630
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
17631
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
17632
|
+
To: email-40@test.com
|
17633
|
+
Message-ID: <5d6c61561f583_175ef3ff231036e30389a9@citron.local.mail>
|
17634
|
+
Subject: Invitation instructions
|
17635
|
+
Mime-Version: 1.0
|
17636
|
+
Content-Type: multipart/alternative;
|
17637
|
+
boundary="--==_mimepart_5d6c61561ebdd_175ef3ff231036e30388f9";
|
17638
|
+
charset=UTF-8
|
17639
|
+
Content-Transfer-Encoding: 7bit
|
17640
|
+
|
17641
|
+
|
17642
|
+
----==_mimepart_5d6c61561ebdd_175ef3ff231036e30388f9
|
17643
|
+
Content-Type: text/plain;
|
17644
|
+
charset=UTF-8
|
17645
|
+
Content-Transfer-Encoding: 7bit
|
17646
|
+
|
17647
|
+
Hello email-40@test.com
|
17648
|
+
|
17649
|
+
Someone has invited you to http://localhost:3000/, you can accept it through the link below.
|
17650
|
+
|
17651
|
+
http://localhost:3000/users/invitation/accept?invitation_token=cTvuKmDmArCcBQZF2hxF
|
17652
|
+
|
17653
|
+
|
17654
|
+
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.
|
17655
|
+
|
17656
|
+
----==_mimepart_5d6c61561ebdd_175ef3ff231036e30388f9
|
17657
|
+
Content-Type: text/html;
|
17658
|
+
charset=UTF-8
|
17659
|
+
Content-Transfer-Encoding: 7bit
|
17660
|
+
|
17661
|
+
<p>Hello email-40@test.com</p>
|
17662
|
+
|
17663
|
+
<p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
|
17664
|
+
|
17665
|
+
<p><a href="http://localhost:3000/users/invitation/accept?invitation_token=cTvuKmDmArCcBQZF2hxF">Accept invitation</a></p>
|
17666
|
+
|
17667
|
+
|
17668
|
+
<p>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.</p>
|
17669
|
+
|
17670
|
+
----==_mimepart_5d6c61561ebdd_175ef3ff231036e30388f9--
|
17671
|
+
|
17672
|
+
Rendering /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb
|
17673
|
+
Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/_index_title.html.erb (0.1ms)
|
17674
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise-4.6.2/app/views/devise/shared/_error_messages.html.erb (0.0ms)
|
17675
|
+
Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb (7.6ms)
|
17676
|
+
[1m[35m (0.7ms)[0m [1m[31mrollback transaction[0m
|
17677
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
17678
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17679
|
+
[1m[36mUser Exists (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-41@test.com"], ["LIMIT", 1]]
|
17680
|
+
[1m[36mUser Create (0.5ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:54.145527"], ["updated_at", "2019-09-02 00:24:54.145527"], ["email", "email-41@test.com"], ["encrypted_password", "$2a$04$Yx7SvK0Ai873QgBND/lFMuQJDw4RN4HhwFaG5K9DBYids2RiaNS0S"]]
|
17681
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17682
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17683
|
+
[1m[36mUser Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-42@test.com"], ["LIMIT", 1]]
|
17684
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:54.148961"], ["updated_at", "2019-09-02 00:24:54.148961"], ["email", "email-42@test.com"], ["encrypted_password", "$2a$04$EZLZlf97GpdKi8659YWYLOveWVc15cMrefK6wr5/sw96m8qA9q8/G"]]
|
17685
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17686
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17687
|
+
[1m[36mUser Exists (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-43@test.com"], ["LIMIT", 1]]
|
17688
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:54.152600"], ["updated_at", "2019-09-02 00:24:54.152600"], ["email", "email-43@test.com"], ["encrypted_password", "$2a$04$tzFkmlQiF51svgMDxpCv..NE//X7FQkcJg4iyRZq/me4KhU4sm1fS"]]
|
17689
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17690
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17691
|
+
[1m[36mUser Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-44@test.com"], ["LIMIT", 1]]
|
17692
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:54.156487"], ["updated_at", "2019-09-02 00:24:54.156487"], ["email", "email-44@test.com"], ["encrypted_password", "$2a$04$KgklT6zqM8/tFVNIqtNZz.JRbNmCr/3l1MG98KkRfHdeTZTX4mWxu"]]
|
17693
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17694
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17695
|
+
[1m[36mUser Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-45@test.com"], ["LIMIT", 1]]
|
17696
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:54.159527"], ["updated_at", "2019-09-02 00:24:54.159527"], ["email", "email-45@test.com"], ["encrypted_password", "$2a$04$VhR8HRE1jkgvckWlMPobGOxqvKd.oi4pBLf3aKO13DN9quUbB6NcK"]]
|
17697
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17698
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17699
|
+
[1m[36mUser Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-46@test.com"], ["LIMIT", 1]]
|
17700
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:54.162291"], ["updated_at", "2019-09-02 00:24:54.162291"], ["email", "email-46@test.com"], ["encrypted_password", "$2a$04$5XY7lyaTFVGNPFNki9CY/etA60sKgdN0ptvPYtsNDb4onwPQ/UCci"]]
|
17701
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17702
|
+
[1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."email" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["email", "email-47@test.com"], ["LIMIT", 1]]
|
17703
|
+
[1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."invitation_token" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["invitation_token", "9c2a4686fc1121563c98d107a5b7ac5231ed27434829f64b3b590ede0eb03530"], ["LIMIT", 1]]
|
17704
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17705
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password", "invitation_token", "invitation_created_at", "invitation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:54.166120"], ["updated_at", "2019-09-02 00:24:54.166120"], ["email", "email-47@test.com"], ["encrypted_password", "$2a$04$5ODxlvn7cxqM4651nYoUd.BVEGB3pL3wzIZ0zKGlNOLEi5bTOcXD."], ["invitation_token", "9c2a4686fc1121563c98d107a5b7ac5231ed27434829f64b3b590ede0eb03530"], ["invitation_created_at", "2019-09-02 00:24:54.165858"], ["invitation_sent_at", "2019-09-02 00:24:54.165858"]]
|
17706
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17707
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
|
17708
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (0.5ms)
|
17709
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
|
17710
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.4ms)
|
17711
|
+
Devise::Mailer#invitation_instructions: processed outbound mail in 3.0ms
|
17712
|
+
Sent mail to email-47@test.com (6.3ms)
|
17713
|
+
Date: Sun, 01 Sep 2019 17:24:54 -0700
|
17714
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
17715
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
17716
|
+
To: email-47@test.com
|
17717
|
+
Message-ID: <5d6c615629bf0_175ef3ff231036e30391d3@citron.local.mail>
|
17718
|
+
Subject: Invitation instructions
|
17719
|
+
Mime-Version: 1.0
|
17720
|
+
Content-Type: multipart/alternative;
|
17721
|
+
boundary="--==_mimepart_5d6c6156294bc_175ef3ff231036e3039012";
|
17722
|
+
charset=UTF-8
|
17723
|
+
Content-Transfer-Encoding: 7bit
|
17724
|
+
|
17725
|
+
|
17726
|
+
----==_mimepart_5d6c6156294bc_175ef3ff231036e3039012
|
17727
|
+
Content-Type: text/plain;
|
17728
|
+
charset=UTF-8
|
17729
|
+
Content-Transfer-Encoding: 7bit
|
17730
|
+
|
17731
|
+
Hello email-47@test.com
|
17732
|
+
|
17733
|
+
Someone has invited you to http://localhost:3000/, you can accept it through the link below.
|
17734
|
+
|
17735
|
+
http://localhost:3000/users/invitation/accept?invitation_token=JKUWYKS9e-xP1yWVv2kt
|
17736
|
+
|
17737
|
+
|
17738
|
+
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.
|
17739
|
+
|
17740
|
+
----==_mimepart_5d6c6156294bc_175ef3ff231036e3039012
|
17741
|
+
Content-Type: text/html;
|
17742
|
+
charset=UTF-8
|
17743
|
+
Content-Transfer-Encoding: 7bit
|
17744
|
+
|
17745
|
+
<p>Hello email-47@test.com</p>
|
17746
|
+
|
17747
|
+
<p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
|
17748
|
+
|
17749
|
+
<p><a href="http://localhost:3000/users/invitation/accept?invitation_token=JKUWYKS9e-xP1yWVv2kt">Accept invitation</a></p>
|
17750
|
+
|
17751
|
+
|
17752
|
+
<p>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.</p>
|
17753
|
+
|
17754
|
+
----==_mimepart_5d6c6156294bc_175ef3ff231036e3039012--
|
17755
|
+
|
17756
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."email" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["email", "email-48@test.com"], ["LIMIT", 1]]
|
17757
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."invitation_token" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["invitation_token", "40241f4f07bddb58d0fae1a88e224e1f5baf7726df042bf3ecfaf3ded6a08745"], ["LIMIT", 1]]
|
17758
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17759
|
+
[1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password", "invitation_token", "invitation_created_at", "invitation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:54.180999"], ["updated_at", "2019-09-02 00:24:54.180999"], ["email", "email-48@test.com"], ["encrypted_password", "$2a$04$Xr824oroMwq7.gMjpSteE.YrbjNsmuhkRR3i0sr5GWomhJR1xtjDK"], ["invitation_token", "40241f4f07bddb58d0fae1a88e224e1f5baf7726df042bf3ecfaf3ded6a08745"], ["invitation_created_at", "2019-09-02 00:24:54.180639"], ["invitation_sent_at", "2019-09-02 00:24:54.180639"]]
|
17760
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17761
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
|
17762
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (0.5ms)
|
17763
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
|
17764
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.4ms)
|
17765
|
+
Devise::Mailer#invitation_instructions: processed outbound mail in 2.8ms
|
17766
|
+
Sent mail to email-48@test.com (2.6ms)
|
17767
|
+
Date: Sun, 01 Sep 2019 17:24:54 -0700
|
17768
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
17769
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
17770
|
+
To: email-48@test.com
|
17771
|
+
Message-ID: <5d6c61562d5be_175ef3ff231036e3039325@citron.local.mail>
|
17772
|
+
Subject: Invitation instructions
|
17773
|
+
Mime-Version: 1.0
|
17774
|
+
Content-Type: multipart/alternative;
|
17775
|
+
boundary="--==_mimepart_5d6c61562cf0a_175ef3ff231036e303926c";
|
17776
|
+
charset=UTF-8
|
17777
|
+
Content-Transfer-Encoding: 7bit
|
17778
|
+
|
17779
|
+
|
17780
|
+
----==_mimepart_5d6c61562cf0a_175ef3ff231036e303926c
|
17781
|
+
Content-Type: text/plain;
|
17782
|
+
charset=UTF-8
|
17783
|
+
Content-Transfer-Encoding: 7bit
|
17784
|
+
|
17785
|
+
Hello email-48@test.com
|
17786
|
+
|
17787
|
+
Someone has invited you to http://localhost:3000/, you can accept it through the link below.
|
17788
|
+
|
17789
|
+
http://localhost:3000/users/invitation/accept?invitation_token=jefhygdw-ptL-j3vytHs
|
17790
|
+
|
17791
|
+
|
17792
|
+
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.
|
17793
|
+
|
17794
|
+
----==_mimepart_5d6c61562cf0a_175ef3ff231036e303926c
|
17795
|
+
Content-Type: text/html;
|
17796
|
+
charset=UTF-8
|
17797
|
+
Content-Transfer-Encoding: 7bit
|
17798
|
+
|
17799
|
+
<p>Hello email-48@test.com</p>
|
17800
|
+
|
17801
|
+
<p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
|
17802
|
+
|
17803
|
+
<p><a href="http://localhost:3000/users/invitation/accept?invitation_token=jefhygdw-ptL-j3vytHs">Accept invitation</a></p>
|
17804
|
+
|
17805
|
+
|
17806
|
+
<p>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.</p>
|
17807
|
+
|
17808
|
+
----==_mimepart_5d6c61562cf0a_175ef3ff231036e303926c--
|
17809
|
+
|
17810
|
+
Rendering /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb
|
17811
|
+
Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/_index_title.html.erb (0.1ms)
|
17812
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise-4.6.2/app/views/devise/shared/_error_messages.html.erb (0.0ms)
|
17813
|
+
Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb (7.2ms)
|
17814
|
+
[1m[35m (0.7ms)[0m [1m[31mrollback transaction[0m
|
17815
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
17816
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17817
|
+
[1m[36mUser Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-49@test.com"], ["LIMIT", 1]]
|
17818
|
+
[1m[36mUser Create (0.5ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:54.201664"], ["updated_at", "2019-09-02 00:24:54.201664"], ["email", "email-49@test.com"], ["encrypted_password", "$2a$04$0b0s6lhYrlZKTTdUkddKU.rQvU/zrreUjBxZWLScocF/ev31YZgfK"]]
|
17819
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17820
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17821
|
+
[1m[36mUser Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-50@test.com"], ["LIMIT", 1]]
|
17822
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:54.204895"], ["updated_at", "2019-09-02 00:24:54.204895"], ["email", "email-50@test.com"], ["encrypted_password", "$2a$04$l6n/PqWHLrghPg.aBl5t1.cp4idgCVRJZREq6t9WJXZdthhHrI.ey"]]
|
17823
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17824
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17825
|
+
[1m[36mUser Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-51@test.com"], ["LIMIT", 1]]
|
17826
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:54.207621"], ["updated_at", "2019-09-02 00:24:54.207621"], ["email", "email-51@test.com"], ["encrypted_password", "$2a$04$XVwqO6AocL6DpPmDHG5eZug0..9sBko3.vrAPabbv7vI1LQ8JlNFS"]]
|
17827
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17828
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17829
|
+
[1m[36mUser Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-52@test.com"], ["LIMIT", 1]]
|
17830
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:54.210647"], ["updated_at", "2019-09-02 00:24:54.210647"], ["email", "email-52@test.com"], ["encrypted_password", "$2a$04$RT04/ym8GvbAuwOiPKCOn.4JbfNUv3xBDMbvQTnIBwu08qLRIwUgy"]]
|
17831
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17832
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17833
|
+
[1m[36mUser Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-53@test.com"], ["LIMIT", 1]]
|
17834
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:54.213702"], ["updated_at", "2019-09-02 00:24:54.213702"], ["email", "email-53@test.com"], ["encrypted_password", "$2a$04$t9Jmr4ah86vyHALcT8Dnmel8gl9cR0/DvYoEMfO14IlNlmcd3y0p2"]]
|
17835
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17836
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17837
|
+
[1m[36mUser Exists (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ?[0m [["email", "email-54@test.com"], ["LIMIT", 1]]
|
17838
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:54.216287"], ["updated_at", "2019-09-02 00:24:54.216287"], ["email", "email-54@test.com"], ["encrypted_password", "$2a$04$xVi6CjEHYXcpiNqnQX6LhOHibRMFncW/3NLw8IM9ageLxe3nJB.sS"]]
|
17839
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17840
|
+
[1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."email" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["email", "email-55@test.com"], ["LIMIT", 1]]
|
17841
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."invitation_token" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["invitation_token", "3d55eca7a61bd9f508d4244207050997d2b8e46844e8f58952228d6ccabc16ed"], ["LIMIT", 1]]
|
17842
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17843
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password", "invitation_token", "invitation_created_at", "invitation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:54.220624"], ["updated_at", "2019-09-02 00:24:54.220624"], ["email", "email-55@test.com"], ["encrypted_password", "$2a$04$/TG92Mud0GaVtGLA1Z4n8.Eq4YEweZRDg6mw8VYscRaSXd/rgSrNS"], ["invitation_token", "3d55eca7a61bd9f508d4244207050997d2b8e46844e8f58952228d6ccabc16ed"], ["invitation_created_at", "2019-09-02 00:24:54.220300"], ["invitation_sent_at", "2019-09-02 00:24:54.220300"]]
|
17844
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17845
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
|
17846
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (0.6ms)
|
17847
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
|
17848
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.4ms)
|
17849
|
+
Devise::Mailer#invitation_instructions: processed outbound mail in 3.2ms
|
17850
|
+
Sent mail to email-55@test.com (2.8ms)
|
17851
|
+
Date: Sun, 01 Sep 2019 17:24:54 -0700
|
17852
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
17853
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
17854
|
+
To: email-55@test.com
|
17855
|
+
Message-ID: <5d6c61563725e_175ef3ff231036e303958c@citron.local.mail>
|
17856
|
+
Subject: Invitation instructions
|
17857
|
+
Mime-Version: 1.0
|
17858
|
+
Content-Type: multipart/alternative;
|
17859
|
+
boundary="--==_mimepart_5d6c615636aee_175ef3ff231036e3039463";
|
17860
|
+
charset=UTF-8
|
17861
|
+
Content-Transfer-Encoding: 7bit
|
17862
|
+
|
17863
|
+
|
17864
|
+
----==_mimepart_5d6c615636aee_175ef3ff231036e3039463
|
17865
|
+
Content-Type: text/plain;
|
17866
|
+
charset=UTF-8
|
17867
|
+
Content-Transfer-Encoding: 7bit
|
17868
|
+
|
17869
|
+
Hello email-55@test.com
|
17870
|
+
|
17871
|
+
Someone has invited you to http://localhost:3000/, you can accept it through the link below.
|
17872
|
+
|
17873
|
+
http://localhost:3000/users/invitation/accept?invitation_token=osKsyTTt_ow3Jt5xJ8Gn
|
17874
|
+
|
17875
|
+
|
17876
|
+
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.
|
17877
|
+
|
17878
|
+
----==_mimepart_5d6c615636aee_175ef3ff231036e3039463
|
17879
|
+
Content-Type: text/html;
|
17880
|
+
charset=UTF-8
|
17881
|
+
Content-Transfer-Encoding: 7bit
|
17882
|
+
|
17883
|
+
<p>Hello email-55@test.com</p>
|
17884
|
+
|
17885
|
+
<p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
|
17886
|
+
|
17887
|
+
<p><a href="http://localhost:3000/users/invitation/accept?invitation_token=osKsyTTt_ow3Jt5xJ8Gn">Accept invitation</a></p>
|
17888
|
+
|
17889
|
+
|
17890
|
+
<p>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.</p>
|
17891
|
+
|
17892
|
+
----==_mimepart_5d6c615636aee_175ef3ff231036e3039463--
|
17893
|
+
|
17894
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."email" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["email", "email-56@test.com"], ["LIMIT", 1]]
|
17895
|
+
[1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."invitation_token" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["invitation_token", "80ac00f880a45548aeb762df1581c1b5c9a289cb6d312a5d4dad7eabd1b56d8f"], ["LIMIT", 1]]
|
17896
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17897
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password", "invitation_token", "invitation_created_at", "invitation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", "2019-09-02 00:24:54.231231"], ["updated_at", "2019-09-02 00:24:54.231231"], ["email", "email-56@test.com"], ["encrypted_password", "$2a$04$KHg/K6pHCotKfxv/RteD4eCwI.3bWur4FuA2GekssQktRzbiDV/8a"], ["invitation_token", "80ac00f880a45548aeb762df1581c1b5c9a289cb6d312a5d4dad7eabd1b56d8f"], ["invitation_created_at", "2019-09-02 00:24:54.230953"], ["invitation_sent_at", "2019-09-02 00:24:54.230953"]]
|
17898
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17899
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
|
17900
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (0.4ms)
|
17901
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
|
17902
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.3ms)
|
17903
|
+
Devise::Mailer#invitation_instructions: processed outbound mail in 2.7ms
|
17904
|
+
Sent mail to email-56@test.com (2.8ms)
|
17905
|
+
Date: Sun, 01 Sep 2019 17:24:54 -0700
|
17906
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
17907
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
17908
|
+
To: email-56@test.com
|
17909
|
+
Message-ID: <5d6c61563993d_175ef3ff231036e3039711@citron.local.mail>
|
17910
|
+
Subject: Invitation instructions
|
17911
|
+
Mime-Version: 1.0
|
17912
|
+
Content-Type: multipart/alternative;
|
17913
|
+
boundary="--==_mimepart_5d6c61563928a_175ef3ff231036e303961";
|
17914
|
+
charset=UTF-8
|
17915
|
+
Content-Transfer-Encoding: 7bit
|
17916
|
+
|
17917
|
+
|
17918
|
+
----==_mimepart_5d6c61563928a_175ef3ff231036e303961
|
17919
|
+
Content-Type: text/plain;
|
17920
|
+
charset=UTF-8
|
17921
|
+
Content-Transfer-Encoding: 7bit
|
17922
|
+
|
17923
|
+
Hello email-56@test.com
|
17924
|
+
|
17925
|
+
Someone has invited you to http://localhost:3000/, you can accept it through the link below.
|
17926
|
+
|
17927
|
+
http://localhost:3000/users/invitation/accept?invitation_token=LzVLRRXe1cbpuve6mtnj
|
17928
|
+
|
17929
|
+
|
17930
|
+
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.
|
17931
|
+
|
17932
|
+
----==_mimepart_5d6c61563928a_175ef3ff231036e303961
|
17933
|
+
Content-Type: text/html;
|
17934
|
+
charset=UTF-8
|
17935
|
+
Content-Transfer-Encoding: 7bit
|
17936
|
+
|
17937
|
+
<p>Hello email-56@test.com</p>
|
17938
|
+
|
17939
|
+
<p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
|
17940
|
+
|
17941
|
+
<p><a href="http://localhost:3000/users/invitation/accept?invitation_token=LzVLRRXe1cbpuve6mtnj">Accept invitation</a></p>
|
17942
|
+
|
17943
|
+
|
17944
|
+
<p>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.</p>
|
17945
|
+
|
17946
|
+
----==_mimepart_5d6c61563928a_175ef3ff231036e303961--
|
17947
|
+
|
17948
|
+
Rendering /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb
|
17949
|
+
Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/_index_title.html.erb (0.1ms)
|
17950
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise-4.6.2/app/views/devise/shared/_error_messages.html.erb (0.0ms)
|
17951
|
+
Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb (8.0ms)
|
17952
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: samvera-persona
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rob Kaufman
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2019-
|
12
|
+
date: 2019-09-02 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
@@ -283,8 +283,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
283
283
|
- !ruby/object:Gem::Version
|
284
284
|
version: '0'
|
285
285
|
requirements: []
|
286
|
-
|
287
|
-
rubygems_version: 2.7.9
|
286
|
+
rubygems_version: 3.0.3
|
288
287
|
signing_key:
|
289
288
|
specification_version: 4
|
290
289
|
summary: Summary of Samvera::Persona.
|