samvera-persona 0.1.1 → 0.1.2
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 +5 -1
- data/lib/samvera-persona/version.rb +1 -1
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/test.log +852 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a0fbd666954eadbdd46a0a0a0f11fcd8ca56d6b93d1b7cfec42171126e964132
|
4
|
+
data.tar.gz: b78063111bb7cc53ea05793a38a92d0f1661dab479d3b538b70f7a3e243093ad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a93ba65801a34931dc20d7cac39f6579b033364e5a75c59af408e05b15bc1b92eb7d8ae44179b14cd3c95a1afe62117bc89dfe13fec10e14db12943e7f3e9059
|
7
|
+
data.tar.gz: 42d33fd31eacd53fcf8433a0b4d0288c8c6861f6c88f2830ee606dbe60d6d75f01e5a7f1d32ec69be02e40741203943591f1c02e0c3264af113a6fa03517b440
|
@@ -8,7 +8,11 @@ module Samvera
|
|
8
8
|
isolate_namespace Samvera::Persona
|
9
9
|
|
10
10
|
initializer :append_migrations do |app|
|
11
|
-
|
11
|
+
# only add the migrations if they are not already copied
|
12
|
+
# via the rake task. Allows gem to work both with the install:migrations
|
13
|
+
# and without it.
|
14
|
+
if !app.root.to_s.match(root.to_s) &&
|
15
|
+
!app.root.join('db/migrate').glob("*.samvera_persona.rb").size > 0
|
12
16
|
config.paths["db/migrate"].expanded.each do |expanded_path|
|
13
17
|
app.config.paths["db/migrate"] << expanded_path
|
14
18
|
end
|
data/spec/dummy/db/test.sqlite3
CHANGED
Binary file
|
data/spec/dummy/log/test.log
CHANGED
@@ -16246,3 +16246,855 @@ Completed 200 OK in 24ms (Views: 17.7ms | ActiveRecord: 0.1ms)
|
|
16246
16246
|
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-08 22:36:58.538365"], ["updated_at", "2019-07-08 22:36:58.538365"], ["email", "email-56@test.com"], ["encrypted_password", "$2a$04$ODTNP5t2RoY2Czst0PZoCutg7jc.UeqMDxPkV69cUMUfgnjcnjXIy"]]
|
16247
16247
|
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16248
16248
|
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
16249
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
16250
|
+
[1m[35m (0.7ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "environment"]]
|
16251
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
16252
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "environment"]]
|
16253
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
16254
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "environment"]]
|
16255
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "users"[0m
|
16256
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
16257
|
+
[1m[35m (1.2ms)[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
|
16258
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_users_on_deleted_at" ON "users" ("deleted_at")[0m
|
16259
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")[0m
|
16260
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE UNIQUE INDEX "index_users_on_invitation_token" ON "users" ("invitation_token")[0m
|
16261
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_users_on_invitations_count" ON "users" ("invitations_count")[0m
|
16262
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE INDEX "index_users_on_invited_by_id" ON "users" ("invited_by_id")[0m
|
16263
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE INDEX "index_users_on_invited_by_type_and_invited_by_id" ON "users" ("invited_by_type", "invited_by_id")[0m
|
16264
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")[0m
|
16265
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
16266
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
16267
|
+
[1m[35m (0.9ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (20190628003746)[0m
|
16268
|
+
[1m[35m (0.9ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES
|
16269
|
+
(20190513181646),
|
16270
|
+
(20190628003608),
|
16271
|
+
(20190520170817);
|
16272
|
+
|
16273
|
+
[0m
|
16274
|
+
[1m[35m (1.1ms)[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
|
16275
|
+
[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]]
|
16276
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
16277
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.4ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2019-07-15 22:01:23.821112"], ["updated_at", "2019-07-15 22:01:23.821112"]]
|
16278
|
+
[1m[35m (0.7ms)[0m [1m[36mcommit transaction[0m
|
16279
|
+
[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]]
|
16280
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
16281
|
+
[1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
16282
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
16283
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16284
|
+
[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]]
|
16285
|
+
[1m[36mUser Create (0.5ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:25.864181"], ["updated_at", "2019-07-15 22:01:25.864181"], ["email", "email-1@test.com"], ["encrypted_password", "$2a$04$Unl/wHuxTpnL1X0gbe8YROMwTqoD7luqFHsXwxW21/8ZkL0ybyFAS"]]
|
16286
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16287
|
+
Processing by Samvera::Persona::UsersController#destroy as HTML
|
16288
|
+
Parameters: {"id"=>"1"}
|
16289
|
+
[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]]
|
16290
|
+
[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]]
|
16291
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16292
|
+
[1m[36mUser Update (0.1ms)[0m [1m[33mUPDATE "users" SET "deleted_at" = ?, "updated_at" = ? WHERE "users"."id" = ?[0m [["deleted_at", "2019-07-15 22:01:25.874828"], ["updated_at", "2019-07-15 22:01:25.874849"], ["id", 1]]
|
16293
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16294
|
+
Redirected to http://test.host/persona/users
|
16295
|
+
Completed 302 Found in 21ms (ActiveRecord: 0.4ms)
|
16296
|
+
[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]]
|
16297
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
16298
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
16299
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16300
|
+
[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]]
|
16301
|
+
[1m[36mUser Create (0.4ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:25.900270"], ["updated_at", "2019-07-15 22:01:25.900270"], ["email", "email-2@test.com"], ["encrypted_password", "$2a$04$FsjDEzz6xb1gDHM4e.by2ufS9rn9xLyBVdOAtM2zVzcv6M39AMYRu"]]
|
16302
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16303
|
+
Processing by Samvera::Persona::UsersController#destroy as HTML
|
16304
|
+
Parameters: {"id"=>"1"}
|
16305
|
+
[1m[36mUser Load (0.0ms)[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]]
|
16306
|
+
[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]]
|
16307
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16308
|
+
[1m[36mUser Update (0.1ms)[0m [1m[33mUPDATE "users" SET "deleted_at" = ?, "updated_at" = ? WHERE "users"."id" = ?[0m [["deleted_at", "2019-07-15 22:01:25.903307"], ["updated_at", "2019-07-15 22:01:25.903317"], ["id", 1]]
|
16309
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16310
|
+
Redirected to http://test.host/persona/users
|
16311
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
16312
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
16313
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
16314
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
16315
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16316
|
+
[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-3@test.com"], ["LIMIT", 1]]
|
16317
|
+
[1m[36mUser Create (0.4ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:25.908369"], ["updated_at", "2019-07-15 22:01:25.908369"], ["email", "email-3@test.com"], ["encrypted_password", "$2a$04$3v8blexaKSVXjmueZ6YKO.gZB/bz3rElo1Q7bsimnsF2epNR6z.fy"]]
|
16318
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16319
|
+
Processing by Samvera::Persona::UsersController#destroy as HTML
|
16320
|
+
Parameters: {"id"=>"1"}
|
16321
|
+
Completed 401 Unauthorized in 2ms (ActiveRecord: 0.0ms)
|
16322
|
+
[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]]
|
16323
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
16324
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
16325
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16326
|
+
[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-4@test.com"], ["LIMIT", 1]]
|
16327
|
+
[1m[36mUser Create (0.5ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:25.920989"], ["updated_at", "2019-07-15 22:01:25.920989"], ["email", "email-4@test.com"], ["encrypted_password", "$2a$04$fOdbcsT5qJauakaYwtNE9OUklDwKHYy0wZ60xaLG6AxoCPYICLOAK"]]
|
16328
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16329
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16330
|
+
[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-5@test.com"], ["LIMIT", 1]]
|
16331
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:25.924565"], ["updated_at", "2019-07-15 22:01:25.924565"], ["email", "email-5@test.com"], ["encrypted_password", "$2a$04$S2A0DW2rl7xWEg3G7OqOFOKl/vRchyertilm/lKS5rC5ydtyI5CIu"]]
|
16332
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16333
|
+
Processing by Samvera::Persona::UsersController#stop_impersonating as HTML
|
16334
|
+
Parameters: {"id"=>"2"}
|
16335
|
+
[1m[36mUser Load (0.0ms)[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]]
|
16336
|
+
Redirected to http://test.host/persona/users
|
16337
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
16338
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
16339
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
16340
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16341
|
+
[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]]
|
16342
|
+
[1m[36mUser Create (0.4ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:25.931130"], ["updated_at", "2019-07-15 22:01:25.931130"], ["email", "email-6@test.com"], ["encrypted_password", "$2a$04$vF0zKGb3wqKyo48F4U9Z5uOekmy.bzXjqlWljpYIcSJVtb1tI.OXG"]]
|
16343
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16344
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16345
|
+
[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]]
|
16346
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:25.935148"], ["updated_at", "2019-07-15 22:01:25.935148"], ["email", "email-7@test.com"], ["encrypted_password", "$2a$04$dfP86JNkaLgwx8JtGx0v1O4uz5Ukzi80VlTaW2xRL1w5Dy7E7vCyK"]]
|
16347
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16348
|
+
Processing by Samvera::Persona::UsersController#impersonate as HTML
|
16349
|
+
Parameters: {"id"=>"2"}
|
16350
|
+
[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]]
|
16351
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
16352
|
+
Redirected to http://test.host/
|
16353
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.1ms)
|
16354
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
16355
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
16356
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16357
|
+
[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]]
|
16358
|
+
[1m[36mUser Create (0.5ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:25.943597"], ["updated_at", "2019-07-15 22:01:25.943597"], ["email", "email-8@test.com"], ["encrypted_password", "$2a$04$x3v4DVs1dN42TjKXqwI7ae3uAngPHqjZRbKs7jaBjlayHGQI5UgWK"]]
|
16359
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16360
|
+
Processing by Samvera::Persona::UsersController#index as HTML
|
16361
|
+
[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]]
|
16362
|
+
Rendering /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb within layouts/application
|
16363
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
16364
|
+
Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb within layouts/application (0.6ms)
|
16365
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
16366
|
+
Completed 200 OK in 23ms (Views: 18.0ms | ActiveRecord: 0.1ms)
|
16367
|
+
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
16368
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
16369
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16370
|
+
[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]]
|
16371
|
+
[1m[36mUser Create (0.5ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:25.975602"], ["updated_at", "2019-07-15 22:01:25.975602"], ["email", "email-9@test.com"], ["encrypted_password", "$2a$04$4VKF23GgWMcCDJzKILNsFO3fALiNAF4HvEAFiaqY6XsyXI5WN.OBq"]]
|
16372
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16373
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16374
|
+
[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]]
|
16375
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:25.978983"], ["updated_at", "2019-07-15 22:01:25.978983"], ["email", "email-10@test.com"], ["encrypted_password", "$2a$04$.cCvxgLQRwc9UkcKYvX2cOqlmOoG28qfudlzWIToEiOx7AqsGXwNa"]]
|
16376
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16377
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
16378
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
16379
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16380
|
+
[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]]
|
16381
|
+
[1m[36mUser Create (0.4ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:25.995305"], ["updated_at", "2019-07-15 22:01:25.995305"], ["email", "email-11@test.com"], ["encrypted_password", "$2a$04$aaJxZavln5egaFXYIQB9fe0/YvE5I86tWoRzKN31F8Bk.DQlmgy16"]]
|
16382
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16383
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16384
|
+
[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]]
|
16385
|
+
[1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:25.999400"], ["updated_at", "2019-07-15 22:01:25.999400"], ["email", "email-12@test.com"], ["encrypted_password", "$2a$04$MyViJLctoFwjXFw.LNQyfuhpZfXc4eDk2z88UU7GP8mD8UGjwv41i"]]
|
16386
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16387
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
16388
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
16389
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16390
|
+
[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-13@test.com"], ["LIMIT", 1]]
|
16391
|
+
[1m[36mUser Create (0.6ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:26.005381"], ["updated_at", "2019-07-15 22:01:26.005381"], ["email", "email-13@test.com"], ["encrypted_password", "$2a$04$BSA0lt2YHWFvmW0NE2JmkOkeD.ZWtL8qTC8/lcKWcnBJZkbXe9Eea"]]
|
16392
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16393
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16394
|
+
[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]]
|
16395
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:26.008975"], ["updated_at", "2019-07-15 22:01:26.008975"], ["email", "email-14@test.com"], ["encrypted_password", "$2a$04$f1/C9xJoBEUZyNJhRRzjEuFj8rw.SddCAh5PoBujF/WLKe.sc1puq"]]
|
16396
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16397
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL[0m
|
16398
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
16399
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
16400
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16401
|
+
[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-15@test.com"], ["LIMIT", 1]]
|
16402
|
+
[1m[36mUser Create (0.4ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:26.013976"], ["updated_at", "2019-07-15 22:01:26.013976"], ["email", "email-15@test.com"], ["encrypted_password", "$2a$04$3umte9XhfSmG089EvF8bIeSepDH9/aEoou7zYToj7Q4RVTxMvejWS"]]
|
16403
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16404
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16405
|
+
[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]]
|
16406
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:26.017336"], ["updated_at", "2019-07-15 22:01:26.017336"], ["email", "email-16@test.com"], ["encrypted_password", "$2a$04$ytRHiBzQC51YebD38lh3AOg8Nx7d46g0cEakHi1s/hYgRFNmLBpVm"]]
|
16407
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16408
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
16409
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
16410
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16411
|
+
[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-17@test.com"], ["LIMIT", 1]]
|
16412
|
+
[1m[36mUser Create (0.5ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:26.023738"], ["updated_at", "2019-07-15 22:01:26.023738"], ["email", "email-17@test.com"], ["encrypted_password", "$2a$04$UB2j1Fkp1otclwThAOJ3D.yOqU5ilrkEe3mmzOixCFoNfP4Ylbh9q"]]
|
16413
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16414
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16415
|
+
[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]]
|
16416
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:26.027082"], ["updated_at", "2019-07-15 22:01:26.027082"], ["email", "email-18@test.com"], ["encrypted_password", "$2a$04$4QKOv1qAkj7itVr93hY0d.sq2hwtvIODrWjihBkBAF9pBl7BFe18K"]]
|
16417
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16418
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16419
|
+
[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]]
|
16420
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:26.030115"], ["updated_at", "2019-07-15 22:01:26.030115"], ["email", "email-19@test.com"], ["encrypted_password", "$2a$04$WcQ7TT274pyZGpK9cP9MauVcQmaRUQ9loj9mcL5RHCHTQmN4EWlIS"]]
|
16421
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16422
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16423
|
+
[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]]
|
16424
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:26.033954"], ["updated_at", "2019-07-15 22:01:26.033954"], ["email", "email-20@test.com"], ["encrypted_password", "$2a$04$xOS6daQ9VSNQqJNAugZX6.xXyVsc8tSbNPmVaNJsdxswuDU3pcCQ2"]]
|
16425
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16426
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16427
|
+
[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]]
|
16428
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:26.037633"], ["updated_at", "2019-07-15 22:01:26.037633"], ["email", "email-21@test.com"], ["encrypted_password", "$2a$04$6/QOLbzQjICQfvkxnXF2D.oalrIHkL9thtfcYZvU/ww9BZNlIijo6"]]
|
16429
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16430
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16431
|
+
[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-22@test.com"], ["LIMIT", 1]]
|
16432
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:26.040822"], ["updated_at", "2019-07-15 22:01:26.040822"], ["email", "email-22@test.com"], ["encrypted_password", "$2a$04$0tO9IEBNT16.YMXhXiLj1.1T.cTZE5hogNoyV4BkSnGhCMBw3mRGu"]]
|
16433
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16434
|
+
[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-23@test.com"], ["LIMIT", 1]]
|
16435
|
+
[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", "df0b541090b2751795b99fb4d7e05e2b88c2c5382f040e24d090d5affac8a1c1"], ["LIMIT", 1]]
|
16436
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16437
|
+
[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-07-15 22:01:26.135480"], ["updated_at", "2019-07-15 22:01:26.135480"], ["email", "email-23@test.com"], ["encrypted_password", "$2a$04$AxVZ1xcBVTERXZeVwUBh1O8OustCc8W4x1YCFUMZVeJcUWyIwOsOe"], ["invitation_token", "df0b541090b2751795b99fb4d7e05e2b88c2c5382f040e24d090d5affac8a1c1"], ["invitation_created_at", "2019-07-15 22:01:26.135222"], ["invitation_sent_at", "2019-07-15 22:01:26.135222"]]
|
16438
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16439
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
|
16440
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (2.3ms)
|
16441
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
|
16442
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.6ms)
|
16443
|
+
Devise::Mailer#invitation_instructions: processed outbound mail in 190.6ms
|
16444
|
+
Sent mail to email-23@test.com (8.1ms)
|
16445
|
+
Date: Mon, 15 Jul 2019 15:01:26 -0700
|
16446
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
16447
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
16448
|
+
To: email-23@test.com
|
16449
|
+
Message-ID: <5d2cf7b6510f5_12f3b3fdfb1036e18496c0@citron.local.mail>
|
16450
|
+
Subject: Invitation instructions
|
16451
|
+
Mime-Version: 1.0
|
16452
|
+
Content-Type: multipart/alternative;
|
16453
|
+
boundary="--==_mimepart_5d2cf7b64fafb_12f3b3fdfb1036e18495d3";
|
16454
|
+
charset=UTF-8
|
16455
|
+
Content-Transfer-Encoding: 7bit
|
16456
|
+
|
16457
|
+
|
16458
|
+
----==_mimepart_5d2cf7b64fafb_12f3b3fdfb1036e18495d3
|
16459
|
+
Content-Type: text/plain;
|
16460
|
+
charset=UTF-8
|
16461
|
+
Content-Transfer-Encoding: 7bit
|
16462
|
+
|
16463
|
+
Hello email-23@test.com
|
16464
|
+
|
16465
|
+
Someone has invited you to http://localhost:3000/, you can accept it through the link below.
|
16466
|
+
|
16467
|
+
http://localhost:3000/users/invitation/accept?invitation_token=pbCLTXCagKsyPGb_EPGs
|
16468
|
+
|
16469
|
+
|
16470
|
+
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.
|
16471
|
+
|
16472
|
+
----==_mimepart_5d2cf7b64fafb_12f3b3fdfb1036e18495d3
|
16473
|
+
Content-Type: text/html;
|
16474
|
+
charset=UTF-8
|
16475
|
+
Content-Transfer-Encoding: 7bit
|
16476
|
+
|
16477
|
+
<p>Hello email-23@test.com</p>
|
16478
|
+
|
16479
|
+
<p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
|
16480
|
+
|
16481
|
+
<p><a href="http://localhost:3000/users/invitation/accept?invitation_token=pbCLTXCagKsyPGb_EPGs">Accept invitation</a></p>
|
16482
|
+
|
16483
|
+
|
16484
|
+
<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>
|
16485
|
+
|
16486
|
+
----==_mimepart_5d2cf7b64fafb_12f3b3fdfb1036e18495d3--
|
16487
|
+
|
16488
|
+
[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]]
|
16489
|
+
[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", "1e58fb8b163111f23a27fad7f372a48c0e87c784cd3dffe2b8b093e0559f3cc6"], ["LIMIT", 1]]
|
16490
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16491
|
+
[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-07-15 22:01:26.338383"], ["updated_at", "2019-07-15 22:01:26.338383"], ["email", "email-24@test.com"], ["encrypted_password", "$2a$04$O3XDIi4VRd5HJ0BzBPey0.G1h1ofX0lvY6NmPcbd.ITLmm/EvPPUm"], ["invitation_token", "1e58fb8b163111f23a27fad7f372a48c0e87c784cd3dffe2b8b093e0559f3cc6"], ["invitation_created_at", "2019-07-15 22:01:26.338112"], ["invitation_sent_at", "2019-07-15 22:01:26.338112"]]
|
16492
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16493
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
|
16494
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (0.4ms)
|
16495
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
|
16496
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.3ms)
|
16497
|
+
Devise::Mailer#invitation_instructions: processed outbound mail in 2.6ms
|
16498
|
+
Sent mail to email-24@test.com (2.5ms)
|
16499
|
+
Date: Mon, 15 Jul 2019 15:01:26 -0700
|
16500
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
16501
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
16502
|
+
To: email-24@test.com
|
16503
|
+
Message-ID: <5d2cf7b653a2b_12f3b3fdfb1036e18498c5@citron.local.mail>
|
16504
|
+
Subject: Invitation instructions
|
16505
|
+
Mime-Version: 1.0
|
16506
|
+
Content-Type: multipart/alternative;
|
16507
|
+
boundary="--==_mimepart_5d2cf7b653416_12f3b3fdfb1036e18497cd";
|
16508
|
+
charset=UTF-8
|
16509
|
+
Content-Transfer-Encoding: 7bit
|
16510
|
+
|
16511
|
+
|
16512
|
+
----==_mimepart_5d2cf7b653416_12f3b3fdfb1036e18497cd
|
16513
|
+
Content-Type: text/plain;
|
16514
|
+
charset=UTF-8
|
16515
|
+
Content-Transfer-Encoding: 7bit
|
16516
|
+
|
16517
|
+
Hello email-24@test.com
|
16518
|
+
|
16519
|
+
Someone has invited you to http://localhost:3000/, you can accept it through the link below.
|
16520
|
+
|
16521
|
+
http://localhost:3000/users/invitation/accept?invitation_token=12Kq7Eq4HjqbtfQ-cgLD
|
16522
|
+
|
16523
|
+
|
16524
|
+
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.
|
16525
|
+
|
16526
|
+
----==_mimepart_5d2cf7b653416_12f3b3fdfb1036e18497cd
|
16527
|
+
Content-Type: text/html;
|
16528
|
+
charset=UTF-8
|
16529
|
+
Content-Transfer-Encoding: 7bit
|
16530
|
+
|
16531
|
+
<p>Hello email-24@test.com</p>
|
16532
|
+
|
16533
|
+
<p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
|
16534
|
+
|
16535
|
+
<p><a href="http://localhost:3000/users/invitation/accept?invitation_token=12Kq7Eq4HjqbtfQ-cgLD">Accept invitation</a></p>
|
16536
|
+
|
16537
|
+
|
16538
|
+
<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>
|
16539
|
+
|
16540
|
+
----==_mimepart_5d2cf7b653416_12f3b3fdfb1036e18497cd--
|
16541
|
+
|
16542
|
+
Rendering /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb
|
16543
|
+
Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/_index_title.html.erb (0.4ms)
|
16544
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise-4.6.2/app/views/devise/shared/_error_messages.html.erb (0.5ms)
|
16545
|
+
Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb (196.7ms)
|
16546
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
16547
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
16548
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16549
|
+
[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]]
|
16550
|
+
[1m[36mUser Create (0.4ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:26.550308"], ["updated_at", "2019-07-15 22:01:26.550308"], ["email", "email-25@test.com"], ["encrypted_password", "$2a$04$SpcMott0hJ2lYawNjuvgEucOCyLPd9thib8AOJRhLtKbS0zljducq"]]
|
16551
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16552
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16553
|
+
[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]]
|
16554
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:26.553054"], ["updated_at", "2019-07-15 22:01:26.553054"], ["email", "email-26@test.com"], ["encrypted_password", "$2a$04$8Jl0BQlnN76oq4ElugjhXuUA/ZO4tZu0Fihge/Z/VbYa19ylTjwT."]]
|
16555
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16556
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16557
|
+
[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]]
|
16558
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:26.555481"], ["updated_at", "2019-07-15 22:01:26.555481"], ["email", "email-27@test.com"], ["encrypted_password", "$2a$04$Bi3UskeSHZ3vgW5pbHfWPuoGRLfeofVc2OJriQg13p1VBDj9GwhtC"]]
|
16559
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16560
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16561
|
+
[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]]
|
16562
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:26.558023"], ["updated_at", "2019-07-15 22:01:26.558023"], ["email", "email-28@test.com"], ["encrypted_password", "$2a$04$OebVPFVQCeZi3Tkb64unE.6Ts0IZyLRb9rMELh3h/FYb9DwwsDGYO"]]
|
16563
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16564
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16565
|
+
[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]]
|
16566
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:26.560608"], ["updated_at", "2019-07-15 22:01:26.560608"], ["email", "email-29@test.com"], ["encrypted_password", "$2a$04$4Q9jPT27Kn/8Qm0yF3OZQe4xS8FrWhnwZpMb2ltM8RAMtrbW.8Jny"]]
|
16567
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16568
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16569
|
+
[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]]
|
16570
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:26.563529"], ["updated_at", "2019-07-15 22:01:26.563529"], ["email", "email-30@test.com"], ["encrypted_password", "$2a$04$PDM6WXEGNja.qlcXnvEsDeOHeCqihXESWc36Si8X/GEWPeSGwYJTe"]]
|
16571
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16572
|
+
[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]]
|
16573
|
+
[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", "3f0288f3336d11a24674c62fc25ea35510c82a65a0e6d8d6e94392cfb7035ff1"], ["LIMIT", 1]]
|
16574
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16575
|
+
[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-07-15 22:01:26.568118"], ["updated_at", "2019-07-15 22:01:26.568118"], ["email", "email-31@test.com"], ["encrypted_password", "$2a$04$vIkSi7kJ9jKOcWxxHPRnx.2yyGRsamzRN6RQj1v97lFwNwbRqR8b6"], ["invitation_token", "3f0288f3336d11a24674c62fc25ea35510c82a65a0e6d8d6e94392cfb7035ff1"], ["invitation_created_at", "2019-07-15 22:01:26.567747"], ["invitation_sent_at", "2019-07-15 22:01:26.567747"]]
|
16576
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16577
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
|
16578
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (0.5ms)
|
16579
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
|
16580
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.4ms)
|
16581
|
+
Devise::Mailer#invitation_instructions: processed outbound mail in 3.1ms
|
16582
|
+
Sent mail to email-31@test.com (2.6ms)
|
16583
|
+
Date: Mon, 15 Jul 2019 15:01:26 -0700
|
16584
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
16585
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
16586
|
+
To: email-31@test.com
|
16587
|
+
Message-ID: <5d2cf7b68bf0b_12f3b3fdfb1036e1850072@citron.local.mail>
|
16588
|
+
Subject: Invitation instructions
|
16589
|
+
Mime-Version: 1.0
|
16590
|
+
Content-Type: multipart/alternative;
|
16591
|
+
boundary="--==_mimepart_5d2cf7b68b832_12f3b3fdfb1036e184994b";
|
16592
|
+
charset=UTF-8
|
16593
|
+
Content-Transfer-Encoding: 7bit
|
16594
|
+
|
16595
|
+
|
16596
|
+
----==_mimepart_5d2cf7b68b832_12f3b3fdfb1036e184994b
|
16597
|
+
Content-Type: text/plain;
|
16598
|
+
charset=UTF-8
|
16599
|
+
Content-Transfer-Encoding: 7bit
|
16600
|
+
|
16601
|
+
Hello email-31@test.com
|
16602
|
+
|
16603
|
+
Someone has invited you to http://localhost:3000/, you can accept it through the link below.
|
16604
|
+
|
16605
|
+
http://localhost:3000/users/invitation/accept?invitation_token=PCRGCbfMUxRNWfMPz1uq
|
16606
|
+
|
16607
|
+
|
16608
|
+
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.
|
16609
|
+
|
16610
|
+
----==_mimepart_5d2cf7b68b832_12f3b3fdfb1036e184994b
|
16611
|
+
Content-Type: text/html;
|
16612
|
+
charset=UTF-8
|
16613
|
+
Content-Transfer-Encoding: 7bit
|
16614
|
+
|
16615
|
+
<p>Hello email-31@test.com</p>
|
16616
|
+
|
16617
|
+
<p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
|
16618
|
+
|
16619
|
+
<p><a href="http://localhost:3000/users/invitation/accept?invitation_token=PCRGCbfMUxRNWfMPz1uq">Accept invitation</a></p>
|
16620
|
+
|
16621
|
+
|
16622
|
+
<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>
|
16623
|
+
|
16624
|
+
----==_mimepart_5d2cf7b68b832_12f3b3fdfb1036e184994b--
|
16625
|
+
|
16626
|
+
[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]]
|
16627
|
+
[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", "7260a76748187d3acba29ecb23f376f94ac1dabaaa4ccb6d54724ce8612fe2e9"], ["LIMIT", 1]]
|
16628
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16629
|
+
[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-07-15 22:01:26.578160"], ["updated_at", "2019-07-15 22:01:26.578160"], ["email", "email-32@test.com"], ["encrypted_password", "$2a$04$so8bjjm/Q2KltR1mcAcEFe6KmFcSu61h1QpGxq2BA9bP2IRlORT.C"], ["invitation_token", "7260a76748187d3acba29ecb23f376f94ac1dabaaa4ccb6d54724ce8612fe2e9"], ["invitation_created_at", "2019-07-15 22:01:26.577883"], ["invitation_sent_at", "2019-07-15 22:01:26.577883"]]
|
16630
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16631
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
|
16632
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (0.4ms)
|
16633
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
|
16634
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.3ms)
|
16635
|
+
Devise::Mailer#invitation_instructions: processed outbound mail in 2.5ms
|
16636
|
+
Sent mail to email-32@test.com (2.3ms)
|
16637
|
+
Date: Mon, 15 Jul 2019 15:01:26 -0700
|
16638
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
16639
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
16640
|
+
To: email-32@test.com
|
16641
|
+
Message-ID: <5d2cf7b68e29f_12f3b3fdfb1036e1850255@citron.local.mail>
|
16642
|
+
Subject: Invitation instructions
|
16643
|
+
Mime-Version: 1.0
|
16644
|
+
Content-Type: multipart/alternative;
|
16645
|
+
boundary="--==_mimepart_5d2cf7b68dc92_12f3b3fdfb1036e18501be";
|
16646
|
+
charset=UTF-8
|
16647
|
+
Content-Transfer-Encoding: 7bit
|
16648
|
+
|
16649
|
+
|
16650
|
+
----==_mimepart_5d2cf7b68dc92_12f3b3fdfb1036e18501be
|
16651
|
+
Content-Type: text/plain;
|
16652
|
+
charset=UTF-8
|
16653
|
+
Content-Transfer-Encoding: 7bit
|
16654
|
+
|
16655
|
+
Hello email-32@test.com
|
16656
|
+
|
16657
|
+
Someone has invited you to http://localhost:3000/, you can accept it through the link below.
|
16658
|
+
|
16659
|
+
http://localhost:3000/users/invitation/accept?invitation_token=xrx1zpv-qoyHNxFuESRM
|
16660
|
+
|
16661
|
+
|
16662
|
+
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.
|
16663
|
+
|
16664
|
+
----==_mimepart_5d2cf7b68dc92_12f3b3fdfb1036e18501be
|
16665
|
+
Content-Type: text/html;
|
16666
|
+
charset=UTF-8
|
16667
|
+
Content-Transfer-Encoding: 7bit
|
16668
|
+
|
16669
|
+
<p>Hello email-32@test.com</p>
|
16670
|
+
|
16671
|
+
<p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
|
16672
|
+
|
16673
|
+
<p><a href="http://localhost:3000/users/invitation/accept?invitation_token=xrx1zpv-qoyHNxFuESRM">Accept invitation</a></p>
|
16674
|
+
|
16675
|
+
|
16676
|
+
<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>
|
16677
|
+
|
16678
|
+
----==_mimepart_5d2cf7b68dc92_12f3b3fdfb1036e18501be--
|
16679
|
+
|
16680
|
+
Rendering /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb
|
16681
|
+
Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/_index_title.html.erb (0.1ms)
|
16682
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise-4.6.2/app/views/devise/shared/_error_messages.html.erb (0.0ms)
|
16683
|
+
Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb (6.4ms)
|
16684
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
16685
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
16686
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16687
|
+
[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]]
|
16688
|
+
[1m[36mUser Create (0.4ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:26.595385"], ["updated_at", "2019-07-15 22:01:26.595385"], ["email", "email-33@test.com"], ["encrypted_password", "$2a$04$d9tY94nH7Lq/n./sz67YZOG4Hk75xaSDmyD.Yq5C2thQzMDYxF83O"]]
|
16689
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16690
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16691
|
+
[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]]
|
16692
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:26.598197"], ["updated_at", "2019-07-15 22:01:26.598197"], ["email", "email-34@test.com"], ["encrypted_password", "$2a$04$rDMnrJYol0R0YrusqBvA3.cVVQ5u/bsoyFPk6Z6lN5Sf.9Jea1eKS"]]
|
16693
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16694
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16695
|
+
[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]]
|
16696
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:26.600596"], ["updated_at", "2019-07-15 22:01:26.600596"], ["email", "email-35@test.com"], ["encrypted_password", "$2a$04$/l25Ph3rN4FxnfFZsbYLsu9X46R6PjL4dkKdeCenqc4rNjNC6ByBu"]]
|
16697
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16698
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16699
|
+
[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]]
|
16700
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:26.602978"], ["updated_at", "2019-07-15 22:01:26.602978"], ["email", "email-36@test.com"], ["encrypted_password", "$2a$04$NaauC5oD1kAvwgtj56wiY.2OEZN5bt7.BRlJDh29ghiU3PqroIOVq"]]
|
16701
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16702
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16703
|
+
[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-37@test.com"], ["LIMIT", 1]]
|
16704
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:26.605406"], ["updated_at", "2019-07-15 22:01:26.605406"], ["email", "email-37@test.com"], ["encrypted_password", "$2a$04$C3zMmOZjYMZafKgO4ZvGu.0/OoyTc.5ReA.dIfpDDWsdY/lpHwuUu"]]
|
16705
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16706
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16707
|
+
[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]]
|
16708
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:26.607784"], ["updated_at", "2019-07-15 22:01:26.607784"], ["email", "email-38@test.com"], ["encrypted_password", "$2a$04$L4LVSQUgoD2flqSDR.2S1eXJejI2LUAygrqXj6ZvdIENAO2.wibHC"]]
|
16709
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16710
|
+
[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]]
|
16711
|
+
[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", "feb9a3a01ad3b463edef0dfe6a371b8570f6ea6fdfa7eee53320e43e6020d8ba"], ["LIMIT", 1]]
|
16712
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16713
|
+
[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-07-15 22:01:26.611234"], ["updated_at", "2019-07-15 22:01:26.611234"], ["email", "email-39@test.com"], ["encrypted_password", "$2a$04$EBqzMRrx70BnABNmqIa/C.pNy4jUTnIr3sXnFb0nwUn4/Oy2Ft69i"], ["invitation_token", "feb9a3a01ad3b463edef0dfe6a371b8570f6ea6fdfa7eee53320e43e6020d8ba"], ["invitation_created_at", "2019-07-15 22:01:26.610971"], ["invitation_sent_at", "2019-07-15 22:01:26.610971"]]
|
16714
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16715
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
|
16716
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (0.5ms)
|
16717
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
|
16718
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.4ms)
|
16719
|
+
Devise::Mailer#invitation_instructions: processed outbound mail in 3.1ms
|
16720
|
+
Sent mail to email-39@test.com (3.5ms)
|
16721
|
+
Date: Mon, 15 Jul 2019 15:01:26 -0700
|
16722
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
16723
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
16724
|
+
To: email-39@test.com
|
16725
|
+
Message-ID: <5d2cf7b69674c_12f3b3fdfb1036e1850454@citron.local.mail>
|
16726
|
+
Subject: Invitation instructions
|
16727
|
+
Mime-Version: 1.0
|
16728
|
+
Content-Type: multipart/alternative;
|
16729
|
+
boundary="--==_mimepart_5d2cf7b695fa7_12f3b3fdfb1036e18503de";
|
16730
|
+
charset=UTF-8
|
16731
|
+
Content-Transfer-Encoding: 7bit
|
16732
|
+
|
16733
|
+
|
16734
|
+
----==_mimepart_5d2cf7b695fa7_12f3b3fdfb1036e18503de
|
16735
|
+
Content-Type: text/plain;
|
16736
|
+
charset=UTF-8
|
16737
|
+
Content-Transfer-Encoding: 7bit
|
16738
|
+
|
16739
|
+
Hello email-39@test.com
|
16740
|
+
|
16741
|
+
Someone has invited you to http://localhost:3000/, you can accept it through the link below.
|
16742
|
+
|
16743
|
+
http://localhost:3000/users/invitation/accept?invitation_token=KZWxpQ1Yhj7mDzhajmsm
|
16744
|
+
|
16745
|
+
|
16746
|
+
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.
|
16747
|
+
|
16748
|
+
----==_mimepart_5d2cf7b695fa7_12f3b3fdfb1036e18503de
|
16749
|
+
Content-Type: text/html;
|
16750
|
+
charset=UTF-8
|
16751
|
+
Content-Transfer-Encoding: 7bit
|
16752
|
+
|
16753
|
+
<p>Hello email-39@test.com</p>
|
16754
|
+
|
16755
|
+
<p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
|
16756
|
+
|
16757
|
+
<p><a href="http://localhost:3000/users/invitation/accept?invitation_token=KZWxpQ1Yhj7mDzhajmsm">Accept invitation</a></p>
|
16758
|
+
|
16759
|
+
|
16760
|
+
<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>
|
16761
|
+
|
16762
|
+
----==_mimepart_5d2cf7b695fa7_12f3b3fdfb1036e18503de--
|
16763
|
+
|
16764
|
+
[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]]
|
16765
|
+
[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", "b36b57c9ba18b26ad71eec66fa0dd7160d41cefb97ede491eaeb6fc3d49c36ea"], ["LIMIT", 1]]
|
16766
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16767
|
+
[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-07-15 22:01:26.622617"], ["updated_at", "2019-07-15 22:01:26.622617"], ["email", "email-40@test.com"], ["encrypted_password", "$2a$04$F4qfiWxM1bgSODXnhcn.vendqv8Vuv8SV1Pf83MzP84F6Qza5Q0fC"], ["invitation_token", "b36b57c9ba18b26ad71eec66fa0dd7160d41cefb97ede491eaeb6fc3d49c36ea"], ["invitation_created_at", "2019-07-15 22:01:26.622313"], ["invitation_sent_at", "2019-07-15 22:01:26.622313"]]
|
16768
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16769
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
|
16770
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (0.4ms)
|
16771
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
|
16772
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.3ms)
|
16773
|
+
Devise::Mailer#invitation_instructions: processed outbound mail in 2.7ms
|
16774
|
+
Sent mail to email-40@test.com (2.7ms)
|
16775
|
+
Date: Mon, 15 Jul 2019 15:01:26 -0700
|
16776
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
16777
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
16778
|
+
To: email-40@test.com
|
16779
|
+
Message-ID: <5d2cf7b69917d_12f3b3fdfb1036e18506f3@citron.local.mail>
|
16780
|
+
Subject: Invitation instructions
|
16781
|
+
Mime-Version: 1.0
|
16782
|
+
Content-Type: multipart/alternative;
|
16783
|
+
boundary="--==_mimepart_5d2cf7b698add_12f3b3fdfb1036e1850537";
|
16784
|
+
charset=UTF-8
|
16785
|
+
Content-Transfer-Encoding: 7bit
|
16786
|
+
|
16787
|
+
|
16788
|
+
----==_mimepart_5d2cf7b698add_12f3b3fdfb1036e1850537
|
16789
|
+
Content-Type: text/plain;
|
16790
|
+
charset=UTF-8
|
16791
|
+
Content-Transfer-Encoding: 7bit
|
16792
|
+
|
16793
|
+
Hello email-40@test.com
|
16794
|
+
|
16795
|
+
Someone has invited you to http://localhost:3000/, you can accept it through the link below.
|
16796
|
+
|
16797
|
+
http://localhost:3000/users/invitation/accept?invitation_token=Uw_oLyAM9Km9Sjv3jcLp
|
16798
|
+
|
16799
|
+
|
16800
|
+
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.
|
16801
|
+
|
16802
|
+
----==_mimepart_5d2cf7b698add_12f3b3fdfb1036e1850537
|
16803
|
+
Content-Type: text/html;
|
16804
|
+
charset=UTF-8
|
16805
|
+
Content-Transfer-Encoding: 7bit
|
16806
|
+
|
16807
|
+
<p>Hello email-40@test.com</p>
|
16808
|
+
|
16809
|
+
<p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
|
16810
|
+
|
16811
|
+
<p><a href="http://localhost:3000/users/invitation/accept?invitation_token=Uw_oLyAM9Km9Sjv3jcLp">Accept invitation</a></p>
|
16812
|
+
|
16813
|
+
|
16814
|
+
<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>
|
16815
|
+
|
16816
|
+
----==_mimepart_5d2cf7b698add_12f3b3fdfb1036e1850537--
|
16817
|
+
|
16818
|
+
Rendering /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb
|
16819
|
+
Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/_index_title.html.erb (0.1ms)
|
16820
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise-4.6.2/app/views/devise/shared/_error_messages.html.erb (0.0ms)
|
16821
|
+
Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb (6.6ms)
|
16822
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
16823
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
16824
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16825
|
+
[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-41@test.com"], ["LIMIT", 1]]
|
16826
|
+
[1m[36mUser Create (0.4ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:26.641106"], ["updated_at", "2019-07-15 22:01:26.641106"], ["email", "email-41@test.com"], ["encrypted_password", "$2a$04$YASTF88oTi3jRMFoUtWmE.ZqpRA3Tr7fmi6K4DYM5v8HUkmTYPF8G"]]
|
16827
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16828
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16829
|
+
[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]]
|
16830
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:26.644106"], ["updated_at", "2019-07-15 22:01:26.644106"], ["email", "email-42@test.com"], ["encrypted_password", "$2a$04$JhrYj79Deus47JBfkjB53.Yg7fvxkPq7OKeLqOyr/2RXd4T/P0EbW"]]
|
16831
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16832
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16833
|
+
[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-43@test.com"], ["LIMIT", 1]]
|
16834
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:26.647121"], ["updated_at", "2019-07-15 22:01:26.647121"], ["email", "email-43@test.com"], ["encrypted_password", "$2a$04$s1L5rVXCFPVzg6dgfon8auXPXLwmAuRd/eMvgaz8mWcH.rr8vY1tS"]]
|
16835
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16836
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16837
|
+
[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]]
|
16838
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:26.650588"], ["updated_at", "2019-07-15 22:01:26.650588"], ["email", "email-44@test.com"], ["encrypted_password", "$2a$04$py5aazLGH1q43k2NnY8/XO8YDNF4rm/1H5tE7dmMD7YhOPQufX4bO"]]
|
16839
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16840
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16841
|
+
[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]]
|
16842
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:26.653943"], ["updated_at", "2019-07-15 22:01:26.653943"], ["email", "email-45@test.com"], ["encrypted_password", "$2a$04$QmvqQ3pHOkZUh8KFJmDYwOgcNwlTFguPdcZCJctPkUPmmcVWEbrYS"]]
|
16843
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16844
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16845
|
+
[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]]
|
16846
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:26.656863"], ["updated_at", "2019-07-15 22:01:26.656863"], ["email", "email-46@test.com"], ["encrypted_password", "$2a$04$AONIzhZ/23g1w4uur9mFh.x8qsLamEFExtVDIG14pKvPL2yK1oJWe"]]
|
16847
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16848
|
+
[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]]
|
16849
|
+
[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", "02271ca6e51fbca29f817891627f96d12a63475d6a0db26d99a21ab2f5813ad4"], ["LIMIT", 1]]
|
16850
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16851
|
+
[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-07-15 22:01:26.660522"], ["updated_at", "2019-07-15 22:01:26.660522"], ["email", "email-47@test.com"], ["encrypted_password", "$2a$04$d1WOmrVf2m5Wz8b50HuHhOqTsmRCHSZLVwLgkSU2/eWEWMnJmJfGe"], ["invitation_token", "02271ca6e51fbca29f817891627f96d12a63475d6a0db26d99a21ab2f5813ad4"], ["invitation_created_at", "2019-07-15 22:01:26.660285"], ["invitation_sent_at", "2019-07-15 22:01:26.660285"]]
|
16852
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16853
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
|
16854
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (0.6ms)
|
16855
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
|
16856
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.3ms)
|
16857
|
+
Devise::Mailer#invitation_instructions: processed outbound mail in 2.7ms
|
16858
|
+
Sent mail to email-47@test.com (2.3ms)
|
16859
|
+
Date: Mon, 15 Jul 2019 15:01:26 -0700
|
16860
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
16861
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
16862
|
+
To: email-47@test.com
|
16863
|
+
Message-ID: <5d2cf7b6a2542_12f3b3fdfb1036e18508f3@citron.local.mail>
|
16864
|
+
Subject: Invitation instructions
|
16865
|
+
Mime-Version: 1.0
|
16866
|
+
Content-Type: multipart/alternative;
|
16867
|
+
boundary="--==_mimepart_5d2cf7b6a1f58_12f3b3fdfb1036e1850744";
|
16868
|
+
charset=UTF-8
|
16869
|
+
Content-Transfer-Encoding: 7bit
|
16870
|
+
|
16871
|
+
|
16872
|
+
----==_mimepart_5d2cf7b6a1f58_12f3b3fdfb1036e1850744
|
16873
|
+
Content-Type: text/plain;
|
16874
|
+
charset=UTF-8
|
16875
|
+
Content-Transfer-Encoding: 7bit
|
16876
|
+
|
16877
|
+
Hello email-47@test.com
|
16878
|
+
|
16879
|
+
Someone has invited you to http://localhost:3000/, you can accept it through the link below.
|
16880
|
+
|
16881
|
+
http://localhost:3000/users/invitation/accept?invitation_token=L7SzS9kx6Vx7S19_Azu9
|
16882
|
+
|
16883
|
+
|
16884
|
+
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.
|
16885
|
+
|
16886
|
+
----==_mimepart_5d2cf7b6a1f58_12f3b3fdfb1036e1850744
|
16887
|
+
Content-Type: text/html;
|
16888
|
+
charset=UTF-8
|
16889
|
+
Content-Transfer-Encoding: 7bit
|
16890
|
+
|
16891
|
+
<p>Hello email-47@test.com</p>
|
16892
|
+
|
16893
|
+
<p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
|
16894
|
+
|
16895
|
+
<p><a href="http://localhost:3000/users/invitation/accept?invitation_token=L7SzS9kx6Vx7S19_Azu9">Accept invitation</a></p>
|
16896
|
+
|
16897
|
+
|
16898
|
+
<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>
|
16899
|
+
|
16900
|
+
----==_mimepart_5d2cf7b6a1f58_12f3b3fdfb1036e1850744--
|
16901
|
+
|
16902
|
+
[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-48@test.com"], ["LIMIT", 1]]
|
16903
|
+
[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", "2135e33ac0ebec378e4b9baac7b5ca7f385224eaf28a5f5d75e83462e5a5332e"], ["LIMIT", 1]]
|
16904
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16905
|
+
[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-07-15 22:01:26.672475"], ["updated_at", "2019-07-15 22:01:26.672475"], ["email", "email-48@test.com"], ["encrypted_password", "$2a$04$zycdkW8g/x8DMcUrG5CmF.hwrEfetDurGmxcIF6/69nvwQ.TIYfIS"], ["invitation_token", "2135e33ac0ebec378e4b9baac7b5ca7f385224eaf28a5f5d75e83462e5a5332e"], ["invitation_created_at", "2019-07-15 22:01:26.672219"], ["invitation_sent_at", "2019-07-15 22:01:26.672219"]]
|
16906
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16907
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
|
16908
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (0.5ms)
|
16909
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
|
16910
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.3ms)
|
16911
|
+
Devise::Mailer#invitation_instructions: processed outbound mail in 2.5ms
|
16912
|
+
Sent mail to email-48@test.com (2.4ms)
|
16913
|
+
Date: Mon, 15 Jul 2019 15:01:26 -0700
|
16914
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
16915
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
16916
|
+
To: email-48@test.com
|
16917
|
+
Message-ID: <5d2cf7b6a535c_12f3b3fdfb1036e18510d8@citron.local.mail>
|
16918
|
+
Subject: Invitation instructions
|
16919
|
+
Mime-Version: 1.0
|
16920
|
+
Content-Type: multipart/alternative;
|
16921
|
+
boundary="--==_mimepart_5d2cf7b6a4d19_12f3b3fdfb1036e1850965";
|
16922
|
+
charset=UTF-8
|
16923
|
+
Content-Transfer-Encoding: 7bit
|
16924
|
+
|
16925
|
+
|
16926
|
+
----==_mimepart_5d2cf7b6a4d19_12f3b3fdfb1036e1850965
|
16927
|
+
Content-Type: text/plain;
|
16928
|
+
charset=UTF-8
|
16929
|
+
Content-Transfer-Encoding: 7bit
|
16930
|
+
|
16931
|
+
Hello email-48@test.com
|
16932
|
+
|
16933
|
+
Someone has invited you to http://localhost:3000/, you can accept it through the link below.
|
16934
|
+
|
16935
|
+
http://localhost:3000/users/invitation/accept?invitation_token=ByGUUXJcEPT14iyetxG8
|
16936
|
+
|
16937
|
+
|
16938
|
+
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.
|
16939
|
+
|
16940
|
+
----==_mimepart_5d2cf7b6a4d19_12f3b3fdfb1036e1850965
|
16941
|
+
Content-Type: text/html;
|
16942
|
+
charset=UTF-8
|
16943
|
+
Content-Transfer-Encoding: 7bit
|
16944
|
+
|
16945
|
+
<p>Hello email-48@test.com</p>
|
16946
|
+
|
16947
|
+
<p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
|
16948
|
+
|
16949
|
+
<p><a href="http://localhost:3000/users/invitation/accept?invitation_token=ByGUUXJcEPT14iyetxG8">Accept invitation</a></p>
|
16950
|
+
|
16951
|
+
|
16952
|
+
<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>
|
16953
|
+
|
16954
|
+
----==_mimepart_5d2cf7b6a4d19_12f3b3fdfb1036e1850965--
|
16955
|
+
|
16956
|
+
Rendering /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb
|
16957
|
+
Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/_index_title.html.erb (0.1ms)
|
16958
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise-4.6.2/app/views/devise/shared/_error_messages.html.erb (0.0ms)
|
16959
|
+
Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb (6.5ms)
|
16960
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
16961
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
16962
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16963
|
+
[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]]
|
16964
|
+
[1m[36mUser Create (0.4ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:26.690376"], ["updated_at", "2019-07-15 22:01:26.690376"], ["email", "email-49@test.com"], ["encrypted_password", "$2a$04$yPAz2u/Upd3Ytr/2CaLF1unxlwSMSthINrdgq05D3gINhQ1zGW8Iq"]]
|
16965
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16966
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16967
|
+
[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]]
|
16968
|
+
[1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:26.693284"], ["updated_at", "2019-07-15 22:01:26.693284"], ["email", "email-50@test.com"], ["encrypted_password", "$2a$04$7kjY5Z5Frh6iEfHxwFUtQOgsWjsdg2Xr2Ag4pWJ31oKxCJnw5w9q6"]]
|
16969
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16970
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16971
|
+
[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]]
|
16972
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:26.696411"], ["updated_at", "2019-07-15 22:01:26.696411"], ["email", "email-51@test.com"], ["encrypted_password", "$2a$04$qU6FToUn6zaOfyBY5UxMrOCfOoHrzwwcg5tBnbM46HGyc86LLzaeK"]]
|
16973
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16974
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16975
|
+
[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]]
|
16976
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:26.700011"], ["updated_at", "2019-07-15 22:01:26.700011"], ["email", "email-52@test.com"], ["encrypted_password", "$2a$04$/yt3NA/rL1oX7IGt60WqrO8jLbbC9a6UVAByTqizgMrNsSEqQc81O"]]
|
16977
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16978
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16979
|
+
[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]]
|
16980
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:26.703403"], ["updated_at", "2019-07-15 22:01:26.703403"], ["email", "email-53@test.com"], ["encrypted_password", "$2a$04$.qhxpRU4nxwHzdhI7wZxhOfbvV4rQOOzVeIHbgbFPHdAkE4YOeWUy"]]
|
16981
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16982
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16983
|
+
[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]]
|
16984
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?)[0m [["created_at", "2019-07-15 22:01:26.706253"], ["updated_at", "2019-07-15 22:01:26.706253"], ["email", "email-54@test.com"], ["encrypted_password", "$2a$04$tl.aS0XYEdeieexcUGUbzeVIZLQ4AaZCpXLzQ/o5P7bzPPhvm11Iu"]]
|
16985
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16986
|
+
[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]]
|
16987
|
+
[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", "4e30958e3b32e1894c25cf5396c9723cbe6202f75f49e17cf5c0d5d0ca4a8289"], ["LIMIT", 1]]
|
16988
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
16989
|
+
[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-07-15 22:01:26.710031"], ["updated_at", "2019-07-15 22:01:26.710031"], ["email", "email-55@test.com"], ["encrypted_password", "$2a$04$ExoP6kwGc3eTdSVW7RDXo.PB48rKF6NJCArHlkkvtWgpc4bWMItdq"], ["invitation_token", "4e30958e3b32e1894c25cf5396c9723cbe6202f75f49e17cf5c0d5d0ca4a8289"], ["invitation_created_at", "2019-07-15 22:01:26.709743"], ["invitation_sent_at", "2019-07-15 22:01:26.709743"]]
|
16990
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16991
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
|
16992
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (0.4ms)
|
16993
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
|
16994
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.3ms)
|
16995
|
+
Devise::Mailer#invitation_instructions: processed outbound mail in 2.7ms
|
16996
|
+
Sent mail to email-55@test.com (2.6ms)
|
16997
|
+
Date: Mon, 15 Jul 2019 15:01:26 -0700
|
16998
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
16999
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
17000
|
+
To: email-55@test.com
|
17001
|
+
Message-ID: <5d2cf7b6ae713_12f3b3fdfb1036e185129b@citron.local.mail>
|
17002
|
+
Subject: Invitation instructions
|
17003
|
+
Mime-Version: 1.0
|
17004
|
+
Content-Type: multipart/alternative;
|
17005
|
+
boundary="--==_mimepart_5d2cf7b6ae073_12f3b3fdfb1036e185117f";
|
17006
|
+
charset=UTF-8
|
17007
|
+
Content-Transfer-Encoding: 7bit
|
17008
|
+
|
17009
|
+
|
17010
|
+
----==_mimepart_5d2cf7b6ae073_12f3b3fdfb1036e185117f
|
17011
|
+
Content-Type: text/plain;
|
17012
|
+
charset=UTF-8
|
17013
|
+
Content-Transfer-Encoding: 7bit
|
17014
|
+
|
17015
|
+
Hello email-55@test.com
|
17016
|
+
|
17017
|
+
Someone has invited you to http://localhost:3000/, you can accept it through the link below.
|
17018
|
+
|
17019
|
+
http://localhost:3000/users/invitation/accept?invitation_token=bE1TfD6QWSjY67xqt1xr
|
17020
|
+
|
17021
|
+
|
17022
|
+
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.
|
17023
|
+
|
17024
|
+
----==_mimepart_5d2cf7b6ae073_12f3b3fdfb1036e185117f
|
17025
|
+
Content-Type: text/html;
|
17026
|
+
charset=UTF-8
|
17027
|
+
Content-Transfer-Encoding: 7bit
|
17028
|
+
|
17029
|
+
<p>Hello email-55@test.com</p>
|
17030
|
+
|
17031
|
+
<p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
|
17032
|
+
|
17033
|
+
<p><a href="http://localhost:3000/users/invitation/accept?invitation_token=bE1TfD6QWSjY67xqt1xr">Accept invitation</a></p>
|
17034
|
+
|
17035
|
+
|
17036
|
+
<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>
|
17037
|
+
|
17038
|
+
----==_mimepart_5d2cf7b6ae073_12f3b3fdfb1036e185117f--
|
17039
|
+
|
17040
|
+
[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-56@test.com"], ["LIMIT", 1]]
|
17041
|
+
[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", "44dfb1b7a8f840f05cd192e17a369e7f52972e0f8712b474c3a02bc1f115ea8d"], ["LIMIT", 1]]
|
17042
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17043
|
+
[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-07-15 22:01:26.719382"], ["updated_at", "2019-07-15 22:01:26.719382"], ["email", "email-56@test.com"], ["encrypted_password", "$2a$04$P/ujtU9Jlk5d4kcdQo7n4eGi680UdGRe3GbEqy.1ZrcKy767TceFi"], ["invitation_token", "44dfb1b7a8f840f05cd192e17a369e7f52972e0f8712b474c3a02bc1f115ea8d"], ["invitation_created_at", "2019-07-15 22:01:26.719145"], ["invitation_sent_at", "2019-07-15 22:01:26.719145"]]
|
17044
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
17045
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
|
17046
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (0.4ms)
|
17047
|
+
Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
|
17048
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.3ms)
|
17049
|
+
Devise::Mailer#invitation_instructions: processed outbound mail in 2.5ms
|
17050
|
+
Sent mail to email-56@test.com (2.5ms)
|
17051
|
+
Date: Mon, 15 Jul 2019 15:01:26 -0700
|
17052
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
17053
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
17054
|
+
To: email-56@test.com
|
17055
|
+
Message-ID: <5d2cf7b6b0a85_12f3b3fdfb1036e185148b@citron.local.mail>
|
17056
|
+
Subject: Invitation instructions
|
17057
|
+
Mime-Version: 1.0
|
17058
|
+
Content-Type: multipart/alternative;
|
17059
|
+
boundary="--==_mimepart_5d2cf7b6b040d_12f3b3fdfb1036e18513e8";
|
17060
|
+
charset=UTF-8
|
17061
|
+
Content-Transfer-Encoding: 7bit
|
17062
|
+
|
17063
|
+
|
17064
|
+
----==_mimepart_5d2cf7b6b040d_12f3b3fdfb1036e18513e8
|
17065
|
+
Content-Type: text/plain;
|
17066
|
+
charset=UTF-8
|
17067
|
+
Content-Transfer-Encoding: 7bit
|
17068
|
+
|
17069
|
+
Hello email-56@test.com
|
17070
|
+
|
17071
|
+
Someone has invited you to http://localhost:3000/, you can accept it through the link below.
|
17072
|
+
|
17073
|
+
http://localhost:3000/users/invitation/accept?invitation_token=nswQqi98fjMySZA-6-sw
|
17074
|
+
|
17075
|
+
|
17076
|
+
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.
|
17077
|
+
|
17078
|
+
----==_mimepart_5d2cf7b6b040d_12f3b3fdfb1036e18513e8
|
17079
|
+
Content-Type: text/html;
|
17080
|
+
charset=UTF-8
|
17081
|
+
Content-Transfer-Encoding: 7bit
|
17082
|
+
|
17083
|
+
<p>Hello email-56@test.com</p>
|
17084
|
+
|
17085
|
+
<p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
|
17086
|
+
|
17087
|
+
<p><a href="http://localhost:3000/users/invitation/accept?invitation_token=nswQqi98fjMySZA-6-sw">Accept invitation</a></p>
|
17088
|
+
|
17089
|
+
|
17090
|
+
<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>
|
17091
|
+
|
17092
|
+
----==_mimepart_5d2cf7b6b040d_12f3b3fdfb1036e18513e8--
|
17093
|
+
|
17094
|
+
Rendering /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb
|
17095
|
+
Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/_index_title.html.erb (0.1ms)
|
17096
|
+
Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise-4.6.2/app/views/devise/shared/_error_messages.html.erb (0.0ms)
|
17097
|
+
Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb (6.4ms)
|
17098
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
17099
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
17100
|
+
[1m[35m (0.1ms)[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.2
|
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-07-
|
12
|
+
date: 2019-07-15 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|