cmor_user_area 0.0.1.pre

Sign up to get free protection for your applications and to get access to all the features.
Files changed (392) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +78 -0
  4. data/Rakefile +19 -0
  5. data/app/concerns/cmor/user_area/controller/current_user_concern.rb +64 -0
  6. data/app/concerns/cmor/user_area/controller/redirect_back_concern.rb +32 -0
  7. data/app/concerns/cmor/user_area/controller/store_current_user_concern.rb +25 -0
  8. data/app/controllers/cmor/user_area/current_users_controller.rb +11 -0
  9. data/app/controllers/cmor/user_area/password_reset_requests.rb +6 -0
  10. data/app/controllers/cmor/user_area/password_reset_requests/base_controller.rb +48 -0
  11. data/app/controllers/cmor/user_area/password_resets.rb +6 -0
  12. data/app/controllers/cmor/user_area/password_resets/base_controller.rb +48 -0
  13. data/app/controllers/cmor/user_area/sessions.rb +6 -0
  14. data/app/controllers/cmor/user_area/sessions/base_controller.rb +53 -0
  15. data/app/controllers/cmor/user_area/user_password_reset_requests_controller.rb +15 -0
  16. data/app/controllers/cmor/user_area/user_password_resets_controller.rb +9 -0
  17. data/app/controllers/cmor/user_area/user_sessions_controller.rb +9 -0
  18. data/app/controllers/cmor/user_area/users.rb +6 -0
  19. data/app/controllers/cmor/user_area/users/base_controller.rb +48 -0
  20. data/app/helpers/cmor/user_area_helper.rb +15 -0
  21. data/app/mailers/cmor/user_area/user_mailer.rb +12 -0
  22. data/app/models/cmor/user_area/user.rb +80 -0
  23. data/app/models/cmor/user_area/user_password_reset_request.rb +42 -0
  24. data/app/serializers/cmor/user_area/user_serializer.rb +7 -0
  25. data/app/services/cmor/user_area/application_service.rb +8 -0
  26. data/app/services/cmor/user_area/create_default_user_service.rb +36 -0
  27. data/app/sessions/cmor/user_area/session/base.rb +8 -0
  28. data/app/sessions/cmor/user_area/user_session.rb +8 -0
  29. data/app/view_helpers/cmor/user_area/application_view_helper.rb +44 -0
  30. data/app/views/cmor/user_area/_navigation.html.haml +13 -0
  31. data/app/views/cmor/user_area/current_users/_form.html.haml +3 -0
  32. data/app/views/cmor/user_area/current_users/_form_errors.html.haml +6 -0
  33. data/app/views/cmor/user_area/current_users/_head_extras.html.haml +0 -0
  34. data/app/views/cmor/user_area/current_users/_show.html.haml +14 -0
  35. data/app/views/cmor/user_area/current_users/_show_extras.html.haml +0 -0
  36. data/app/views/cmor/user_area/current_users/edit.html.haml +17 -0
  37. data/app/views/cmor/user_area/current_users/new.html.haml +15 -0
  38. data/app/views/cmor/user_area/current_users/show.html.haml +34 -0
  39. data/app/views/cmor/user_area/navigation_dropdown/_bootstrap3.html.haml +16 -0
  40. data/app/views/cmor/user_area/navigation_dropdown/_bootstrap4.html.haml +14 -0
  41. data/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml +10 -0
  42. data/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render_dropdown.html.haml +15 -0
  43. data/app/views/cmor/user_area/password_reset_requests/base/_form.html.haml +1 -0
  44. data/app/views/cmor/user_area/password_reset_requests/base/_form_errors.html.haml +6 -0
  45. data/app/views/cmor/user_area/password_reset_requests/base/_head_extras.html.haml +0 -0
  46. data/app/views/cmor/user_area/password_reset_requests/base/new.haml +15 -0
  47. data/app/views/cmor/user_area/password_resets/base/_form.html.haml +2 -0
  48. data/app/views/cmor/user_area/password_resets/base/_form_errors.html.haml +6 -0
  49. data/app/views/cmor/user_area/password_resets/base/_head_extras.html.haml +0 -0
  50. data/app/views/cmor/user_area/password_resets/base/edit.haml +15 -0
  51. data/app/views/cmor/user_area/sessions/base/_form.html.haml +2 -0
  52. data/app/views/cmor/user_area/sessions/base/_form_errors.html.haml +6 -0
  53. data/app/views/cmor/user_area/sessions/base/_head_extras.html.haml +0 -0
  54. data/app/views/cmor/user_area/sessions/base/new.html.haml +17 -0
  55. data/app/views/cmor/user_area/user_mailer/password_reset_email.de.html.erb +11 -0
  56. data/app/views/cmor/user_area/user_mailer/password_reset_email.de.text.erb +9 -0
  57. data/app/views/cmor/user_area/user_mailer/password_reset_email.en.html.erb +12 -0
  58. data/app/views/cmor/user_area/user_mailer/password_reset_email.en.text.erb +9 -0
  59. data/app/views/home/index.html.erb +0 -0
  60. data/config/locales/authlogic.de.yml +24 -0
  61. data/config/locales/de.yml +132 -0
  62. data/config/locales/en.yml +126 -0
  63. data/config/routes.rb +19 -0
  64. data/db/migrate/20160115181043_create_cmor_user_area_users.rb +37 -0
  65. data/lib/cmor/user_area.rb +30 -0
  66. data/lib/cmor/user_area/configuration.rb +32 -0
  67. data/lib/cmor/user_area/engine.rb +8 -0
  68. data/lib/cmor/user_area/spec_helpers/feature.rb +62 -0
  69. data/lib/cmor/user_area/version.rb +7 -0
  70. data/lib/cmor_user_area.rb +10 -0
  71. data/lib/generators/cmor/user_area/install/install_generator.rb +38 -0
  72. data/lib/generators/cmor/user_area/install/templates/application_controller.source +3 -0
  73. data/lib/generators/cmor/user_area/install/templates/initializer.rb +60 -0
  74. data/lib/generators/cmor/user_area/install/templates/routes.source +2 -0
  75. data/lib/tasks/cmor_user_area_tasks.rake +8 -0
  76. data/spec/dummy/app/assets/config/manifest.js +3 -0
  77. data/spec/dummy/app/assets/javascripts/cable.js +13 -0
  78. data/spec/dummy/app/channels/application_cable/channel.rb +4 -0
  79. data/spec/dummy/app/channels/application_cable/connection.rb +4 -0
  80. data/spec/dummy/app/jobs/application_job.rb +2 -0
  81. data/spec/dummy/app/mailers/application_mailer.rb +4 -0
  82. data/spec/dummy/app/models/application_record.rb +3 -0
  83. data/spec/dummy/app/views/layouts/mailer.html.erb +13 -0
  84. data/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
  85. data/spec/dummy/bin/update +31 -0
  86. data/spec/dummy/bin/yarn +11 -0
  87. data/spec/dummy/config/cable.yml +10 -0
  88. data/spec/dummy/config/initializers/application_controller_renderer.rb +8 -0
  89. data/spec/dummy/config/initializers/content_security_policy.rb +25 -0
  90. data/spec/dummy/config/puma.rb +34 -0
  91. data/spec/dummy/config/spring.rb +6 -0
  92. data/spec/dummy/config/storage.yml +34 -0
  93. data/spec/dummy/db/development.sqlite3 +0 -0
  94. data/spec/dummy/db/migrate/20190325192603_create_active_storage_tables.active_storage.rb +27 -0
  95. data/spec/dummy/db/migrate/20190325192624_create_cmor_user_area_users.cmor_user_area.rb +38 -0
  96. data/spec/dummy/db/test.sqlite3 +0 -0
  97. data/spec/dummy/lib/templates/haml/scaffold/_form.html.haml +12 -0
  98. data/spec/dummy/log/development.log +108 -0
  99. data/spec/dummy/log/test.log +509 -0
  100. data/spec/dummy/package.json +5 -0
  101. data/spec/dummy/public/apple-touch-icon-precomposed.png +0 -0
  102. data/spec/dummy/public/apple-touch-icon.png +0 -0
  103. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/-w/-wwQdyEeejIS0ptNkDb8CotcFEz8shbr_mHkZA7OevQ.cache +0 -0
  104. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/2J/2JZ8VAYhkBcWE3sok5fqFK1opx8vf16OKQxVHfUPn4k.cache +1 -0
  105. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/4T/4TkMgJg6Zk3-hcNYiEywIW5XROuYtAcnmPk9_0I7clg.cache +0 -0
  106. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/58/584AkuPUz7HNQZLo41hVlC43-zDp6wQiwQjwuqNORRY.cache +0 -0
  107. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5L/5L-FSYLjBxDmPgzI_CAYGDk-9Mni9w9C57XkJeyt5LA.cache +1 -0
  108. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6e/6eHLns1-9lpL1ONXkJHSM9src6rLg-c1X_ABZTpGJU0.cache +1 -0
  109. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/79/79jR4Uf_pUhttCKeRR-xEPMITP6aTnSgtQIa8EfUW8E.cache +2 -0
  110. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/7R/7RJVJLrYkQmkJ9Sl8MmsOoQEZ8h9ZjROviFb0SniYcs.cache +1 -0
  111. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/8-/8-QQLtMujDnjyd2fI0Ygw5qXaATxumVuyPKDpUWewKE.cache +2 -0
  112. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/8B/8BjefZm87J3KSHa70sBrLglaelKVHts_WPz85SBILbw.cache +0 -0
  113. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/8Q/8Qv0pOFexuQn3xn0g8_E7UAZoZjcSudR3eCadt2r1ic.cache +0 -0
  114. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/AE/AEkMvfX2UxO0g0t28U8GjbECOIWvVNlR03X0ab1M4tE.cache +1 -0
  115. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/AR/ARfYs31IhL3pDDp_oJE4RzmDigur1JRJkqZpRTyt1M8.cache +0 -0
  116. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Aq/AqM1YgA1Ku-odROqZQDyMn3C45ppUn4qo1QscS5TAL4.cache +0 -0
  117. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Bz/BzORlUIjpUN9Hsz7XbBmcaQFd_l4HfoJkJw0t4nAKjc.cache +0 -0
  118. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/C5/C5D4T0_nOZRxlB1Kr3YBjpAz13VAaGm5141p_IqSHEw.cache +3 -0
  119. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/D2/D2ri1FdDjnUlgaCehETUAH9MBudGFni8BhvIeGwF46s.cache +1 -0
  120. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/DX/DXbHDrIcECN1YE2zwFlHXwUEsa9Nc1OnPX_baI13PI8.cache +1 -0
  121. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/EK/EK4OLCBAIT0sqfYnC571wtOio3A88k5mjqemmHXRvME.cache +0 -0
  122. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ex/Exni9T-N0D00xhk9o73AIRL5YUOyHlJTj0i9YuzvnvQ.cache +1 -0
  123. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/F7/F74fucogx91yB5PW70H7x0uAJV_sYuVfbAg73rR-wUI.cache +3 -0
  124. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/H5/H5OObbRUl_LDveW5FbD_ypXLGfV1jkVsOYxMVonPdRU.cache +0 -0
  125. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/HC/HCDOUd7-S45aJ_PjVAC_Vmjyud3i1aQv4cE3t9_Z3Dw.cache +2 -0
  126. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/HZ/HZ1iRdzAHZ8o4HrWUPniUmrldI0rrw3czGHIlhKx20Q.cache +2 -0
  127. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Hx/HxDhLNAjgpAjWKLIYCTcv1gXd11GGWXDRkGMlW1ZL4o.cache +1 -0
  128. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ia/Iamg0tlKTyWQONN43wFwQ4e-seFD8rm8Tf-G72HPyP4.cache +1 -0
  129. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/K9/K9crSvC2UPnYrdvz_jmuiFaHNpGz63JZnWi2--YxO7A.cache +1 -0
  130. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/KU/KUadIyonXR1Vyz07b6lra7kQIWQVonzIiOzZCJOK4IE.cache +3 -0
  131. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Kq/Kqu-8GldLxbnQ5PYr_P_Xv6O-g9ty5ReXacceHUMDiY.cache +0 -0
  132. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Kz/KzLDCKAT9oKrukAg9tFB8mtVV7bPiIGpiFUeS1TljEQ.cache +0 -0
  133. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/LW/LWYc1nv4Bh5BbSrhl4B1cnaH5Qqks2CqNagjBrxfoDY.cache +0 -0
  134. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/MC/MCuEd_HWd5C2COVhVm23pI9wjRXLZI7gB5cNb6b_5X4.cache +1 -0
  135. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Mb/MbgYygU0CWG73XoEOS94Vyil9b_iyKja00eXefGa5LM.cache +0 -0
  136. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Mm/MmSp1Be-PB_hAasIwNDehj1aIpBVchE9WrMEIgD67SA.cache +1 -0
  137. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/NA/NA7TG8OGXra5NGU5ptqd0TbvuCX0sB2U1SUbbOgo_ik.cache +1 -0
  138. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ng/NgoumFe4ZOSieHJ2XRgYhOlgTLS35s0DyU58x7HfI2A.cache +0 -0
  139. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Oo/OoGJC7rHNFMAE-SQlL4eOy8lPJR8Y4cN0zSRnygkHY8.cache +1 -0
  140. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/PD/PD99Bcd5AQWB3NVDhz4dX9LI8A31bqUs4N-qUdEFCAE.cache +1 -0
  141. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/PI/PIysz08byyvXlaQfthLgm79fjzz0rZ0el42dAQq2hf8.cache +1 -0
  142. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/P_/P_UMpytd32vzaBB9OmSyfMhsloRkvkvWbGJU1cY-_T0.cache +1 -0
  143. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Q7/Q7JnF7XNGFTeq0tZ_T2eaASvv6XImGz7QxxPWYcA3g0.cache +1 -0
  144. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Qn/QntQgTSCYnhbiX4LoprBXIqyz2RyRzOJiKazX9xHuu8.cache +1 -0
  145. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/R6/R6W1OhmXADlwn2paOoImbgcKCpB8tY4uwtVA27HImuc.cache +3 -0
  146. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Rs/RscE5VBWfyXMQo35So2JtRTyNa8kpDdAjWTM96exJtw.cache +1 -0
  147. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/SB/SByKDoOgon_c4yw7Hg6SUt7e3nBnAiFe0PmKjQKgP38.cache +1 -0
  148. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/SC/SCj7IBUBBJModudbkHhWngiTTDj1t5ZhW5PfZA0HGHQ.cache +1 -0
  149. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/TM/TMb1cGxkrsKz17sDCtqbWN-Jh6QxyKU_ltbBTBTsZVc.cache +0 -0
  150. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Tp/TpmeWw1QJfLYcmHo3aqXMUTmK3_tppjOTY6Bhmm5z4c.cache +1 -0
  151. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/U2/U2ziIOj8cbeulgezpTOzcrhnd7Z8mGLcFNHHLRS6v_w.cache +2 -0
  152. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Uz/UzRlBw63ovNsxNNbz6WVQPkQx_g01AT7k9JzvmLbmZ8.cache +0 -0
  153. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/VS/VSliUoy2QKm5bR_26CTaylVZY4o61YuE0gr5kqU6UJE.cache +0 -0
  154. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Vr/VrtEHnJmqjZwGxBqPWkxmfbuNoZ_ZlWNmLzKRC924FU.cache +1 -0
  155. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/W5/W5NIwCJ2YK1p63ZkfQtu4M00FVW772ITtEBrY9xYfYI.cache +1 -0
  156. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Xk/XkVHFvPaI-xAbAcXZSv_EslOO0sXQSOJi2v9-w5UyE4.cache +1 -0
  157. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Xv/XvoUclLVplyO9UQw8e-98EJElxKytnIKdeiw8cN1tAk.cache +1 -0
  158. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Yp/YpBWosQuOX-dGPr1EDa4wnkCPyZdLhq-0vKhfbMWsUY.cache +0 -0
  159. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Yu/YubKG280u8nFXEY4CvadpgzyDbeevIL7SFUQeFA_0X4.cache +0 -0
  160. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Zj/ZjK1fvOKdajGTfU5pRn8x2UWgX8GWvuTXo24RENXREM.cache +1 -0
  161. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_U/_Uz5da-URnRhVpIycPwOq3dvEZay17seoAYyPNNT_d4.cache +1 -0
  162. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_v/_vHhLuv_HO3ndie5PLld1rfmAfh8Y54vtbj14lnA97w.cache +0 -0
  163. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/aQ/aQL0CNPS5ESzN5XcS9o8NF7i4bv4pCm0xdrA7vfw5fc.cache +2 -0
  164. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/aR/aR5t7yCAR6IoNonATlf4QuZZSFc4k_ERK1u2fltqois.cache +1 -0
  165. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bD/bDIuRJAlDi98cyI-tv6gf95cK6b2lDclVk6gw7-4yQE.cache +1 -0
  166. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bl/blP7I9wrpMZirmqxSinkxvHgn7dwfxBAvHlUkCTQf9Q.cache +1 -0
  167. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bu/buXbbv7z8SqC7DAPe_4Oip10Xm9GRMFE9VIlCHH3pDQ.cache +1 -0
  168. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/c7/c7CooReQb2ejxEumMNCGRid6lhlPFxxlYhiSx0BnFf4.cache +1 -0
  169. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/dG/dG2st3mUGsh-8yC115nqU2IltElHJVNhu2vRfijxs20.cache +1 -0
  170. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/dp/dpzW4cK3NsJEHAYf7z-nszapTBk7oQrhBPjmkIoZoXQ.cache +1 -0
  171. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/eJ/eJhiyiHTMJUDd_OqCXD93jBwAivnKRBa5x5qtFrxQj8.cache +1 -0
  172. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/fR/fRbCj1aNB38O-9pznPKZJ-EZoFXBeVilAs0WroTkIEM.cache +1 -0
  173. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/fU/fUQKkajuOuSLJQtRtjum4rOrJsTBFTgtwktNG4QVlrQ.cache +1 -0
  174. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/fq/fqqy6XMocl_Tx0nWsOC1LQ_uj3jUrV-CN8kMgtDR0Bc.cache +2 -0
  175. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/gd/gdC8KjHpTRTYsyeT0HoM5RR_ZKDCK_4XKXQO81ArNlM.cache +0 -0
  176. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/iJ/iJM3CTsQFj5rof3eJPd4ioz8cgWWJie0byeOy7L6Nng.cache +1 -0
  177. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/i_/i_s59CkDPBCbkVzR2yxiT9kpEI1B0pO0OYOIwTGpkcI.cache +2 -0
  178. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ip/ipi1NeZWfWKRKJ3wXF6d_iPE8V0BdYHjDxYhBLc98A8.cache +0 -0
  179. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/j1/j1BQXikuCXkgfl_ekvX7byh1qZLEg4hhbmTdGdJVijs.cache +0 -0
  180. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/jK/jKHqW1VBzFtw_WgOZ-5WFrod_nbiYJ_Duey1VZXs3Mo.cache +0 -0
  181. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/jU/jUmxOIOwQBdZhDyVmTtD0UUEWZz_9Iu64WY59bXHgs0.cache +1 -0
  182. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/kD/kDartayL6A6j26rd-NkFIU9yqvIIJh9IUdiLsbuHoPY.cache +1 -0
  183. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lD/lDkdR_Yvju7JvBiTO_3OE9ADzuVk-4T_JvDZhPSpmXk.cache +1 -0
  184. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lS/lStvx9Beg2l4s8L-QdTSKuc5_qQPQAZPnIcRI7JkpPE.cache +2 -0
  185. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/nI/nIKQa784qYcxM8_rmLncqiSL4jWWsKrqq19GrEprQ34.cache +1 -0
  186. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/n_/n_xYqQYhwEMQknb3jFQnjlxxBE9TzMNHCdJ-bEyZFIw.cache +2 -0
  187. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/nq/nqBvCfX72u2EvAyNfHt3upjIFz009V5YYgwPmmaNRH4.cache +3 -0
  188. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/nt/ntry6y5LOGB3mXS76ylx-eIcul__UqoQoqB4-0eaNnI.cache +2 -0
  189. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/nx/nxTv3sKVUQZADJyM3dPaVmUA78MIsMLD_K279yN_GsI.cache +2 -0
  190. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/qq/qqeUBxpDPTNXL2hYWXX8t_E_jxRkRpjhJR-FcdiLWr0.cache +3 -0
  191. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/qt/qtFUQpglBnMnPpRsGKkhr2rqj9Ub3yOf_h01fudm3pc.cache +0 -0
  192. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/sm/smkjNAEzX7uLiRZnQA38poQvnhHE5uHIlMpkirr_K04.cache +2 -0
  193. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/v_/v_O7CAdXG7icZucqoA971FxfXpz7XWC8PtjH-Z1HIFU.cache +3 -0
  194. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/vw/vw4hWcAaXGLEo2E8KRM86fVgJAvs7q3qkZYmkI2UYG0.cache +2 -0
  195. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/w8/w8XS90xe44-zLTirkVNvEMgky0Iu-y4R4tWoQTHOkWA.cache +1 -0
  196. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/wH/wHiXMAfKVNHdoxvX_7U_fJX97Kv2TDg5VZs6QQGgM7k.cache +1 -0
  197. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/wY/wYXscG863_Dznp_gsU3c1NlFGjKgloZPKnaFeHYhgLg.cache +0 -0
  198. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/wi/win_v0ZNu-l7AoRx8w3ls1xcy0mUExLBVMCSr5oaJFc.cache +0 -0
  199. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ws/wsn2nUkOEHSwCK9Q1WpZekvvnYE5COQwF3keiKR9-0A.cache +1 -0
  200. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/yM/yMREEbi29WAWRdWlQTj_ovW5SHtEt1exOy8aWy1PCI4.cache +1 -0
  201. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/yq/yqxTsMP8kmCSie9aYhLgHs_Db7h-sSa5vmqZZJUtwv0.cache +0 -0
  202. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/yr/yrp_60uUSk5SlU1028XR4AIpun11BkJJOvIgatVUYBQ.cache +2 -0
  203. data/spec/dummy/tmp/development_secret.txt +1 -0
  204. data/spec/dummy~/Rakefile +6 -0
  205. data/spec/dummy~/app/assets/config/manifest.js +3 -0
  206. data/spec/dummy~/app/assets/javascripts/application.js +15 -0
  207. data/spec/dummy~/app/assets/javascripts/cable.js +13 -0
  208. data/spec/dummy~/app/assets/stylesheets/application.css +15 -0
  209. data/spec/dummy~/app/channels/application_cable/channel.rb +4 -0
  210. data/spec/dummy~/app/channels/application_cable/connection.rb +4 -0
  211. data/spec/dummy~/app/controllers/application_controller.rb +7 -0
  212. data/spec/dummy~/app/controllers/home_controller.rb +3 -0
  213. data/spec/dummy~/app/helpers/application_helper.rb +2 -0
  214. data/spec/dummy~/app/jobs/application_job.rb +2 -0
  215. data/spec/dummy~/app/mailers/application_mailer.rb +4 -0
  216. data/spec/dummy~/app/models/application_record.rb +3 -0
  217. data/spec/dummy~/app/views/home/index.html.erb +1 -0
  218. data/spec/dummy~/app/views/layouts/application.html.erb +17 -0
  219. data/spec/dummy~/app/views/layouts/mailer.html.erb +13 -0
  220. data/spec/dummy~/app/views/layouts/mailer.text.erb +1 -0
  221. data/spec/dummy~/bin/bundle +3 -0
  222. data/spec/dummy~/bin/rails +4 -0
  223. data/spec/dummy~/bin/rake +4 -0
  224. data/spec/dummy~/bin/setup +36 -0
  225. data/spec/dummy~/bin/update +31 -0
  226. data/spec/dummy~/bin/yarn +11 -0
  227. data/spec/dummy~/config.ru +5 -0
  228. data/spec/dummy~/config/application.rb +30 -0
  229. data/spec/dummy~/config/boot.rb +5 -0
  230. data/spec/dummy~/config/cable.yml +10 -0
  231. data/spec/dummy~/config/database.yml +25 -0
  232. data/spec/dummy~/config/environment.rb +5 -0
  233. data/spec/dummy~/config/environments/development.rb +61 -0
  234. data/spec/dummy~/config/environments/production.rb +94 -0
  235. data/spec/dummy~/config/environments/test.rb +46 -0
  236. data/spec/dummy~/config/initializers/application_controller_renderer.rb +8 -0
  237. data/spec/dummy~/config/initializers/assets.rb +14 -0
  238. data/spec/dummy~/config/initializers/backtrace_silencers.rb +7 -0
  239. data/spec/dummy~/config/initializers/cmor_user_area.rb +60 -0
  240. data/spec/dummy~/config/initializers/content_security_policy.rb +25 -0
  241. data/spec/dummy~/config/initializers/cookies_serializer.rb +5 -0
  242. data/spec/dummy~/config/initializers/filter_parameter_logging.rb +4 -0
  243. data/spec/dummy~/config/initializers/i18n.rb +2 -0
  244. data/spec/dummy~/config/initializers/inflections.rb +16 -0
  245. data/spec/dummy~/config/initializers/mime_types.rb +4 -0
  246. data/spec/dummy~/config/initializers/route_translator.rb +3 -0
  247. data/spec/dummy~/config/initializers/simple_form.rb +179 -0
  248. data/spec/dummy~/config/initializers/simple_form_bootstrap.rb +439 -0
  249. data/spec/dummy~/config/initializers/wrap_parameters.rb +14 -0
  250. data/spec/dummy~/config/locales/en.yml +33 -0
  251. data/spec/dummy~/config/locales/simple_form.en.yml +31 -0
  252. data/spec/dummy~/config/puma.rb +34 -0
  253. data/spec/dummy~/config/routes.rb +6 -0
  254. data/spec/dummy~/config/spring.rb +6 -0
  255. data/spec/dummy~/config/storage.yml +34 -0
  256. data/spec/dummy~/db/development.sqlite3 +0 -0
  257. data/spec/dummy~/db/migrate/20190325182101_create_active_storage_tables.active_storage.rb +27 -0
  258. data/spec/dummy~/db/migrate/20190325182124_create_cmor_user_area_users.cmor_user_area.rb +38 -0
  259. data/spec/dummy~/db/schema.rb +57 -0
  260. data/spec/dummy~/db/test.sqlite3 +0 -0
  261. data/spec/dummy~/lib/templates/haml/scaffold/_form.html.haml +12 -0
  262. data/spec/dummy~/log/development.log +108 -0
  263. data/spec/dummy~/log/test.log +2471 -0
  264. data/spec/dummy~/package.json +5 -0
  265. data/spec/dummy~/public/404.html +67 -0
  266. data/spec/dummy~/public/422.html +67 -0
  267. data/spec/dummy~/public/500.html +66 -0
  268. data/spec/dummy~/public/apple-touch-icon-precomposed.png +0 -0
  269. data/spec/dummy~/public/apple-touch-icon.png +0 -0
  270. data/spec/dummy~/public/favicon.ico +0 -0
  271. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/-w/-wwQdyEeejIS0ptNkDb8CotcFEz8shbr_mHkZA7OevQ.cache +0 -0
  272. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/0L/0L3l7M3Aw2FFbzcBBR_--7OUYxk8hcS4Wlu_XsRSDM8.cache +2 -0
  273. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/2J/2JZ8VAYhkBcWE3sok5fqFK1opx8vf16OKQxVHfUPn4k.cache +1 -0
  274. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/4T/4TkMgJg6Zk3-hcNYiEywIW5XROuYtAcnmPk9_0I7clg.cache +0 -0
  275. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/58/584AkuPUz7HNQZLo41hVlC43-zDp6wQiwQjwuqNORRY.cache +0 -0
  276. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/5L/5L-FSYLjBxDmPgzI_CAYGDk-9Mni9w9C57XkJeyt5LA.cache +1 -0
  277. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/6e/6eHLns1-9lpL1ONXkJHSM9src6rLg-c1X_ABZTpGJU0.cache +1 -0
  278. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/79/79jR4Uf_pUhttCKeRR-xEPMITP6aTnSgtQIa8EfUW8E.cache +2 -0
  279. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/7R/7RJVJLrYkQmkJ9Sl8MmsOoQEZ8h9ZjROviFb0SniYcs.cache +1 -0
  280. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/8-/8-QQLtMujDnjyd2fI0Ygw5qXaATxumVuyPKDpUWewKE.cache +2 -0
  281. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/8B/8BjefZm87J3KSHa70sBrLglaelKVHts_WPz85SBILbw.cache +0 -0
  282. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/8Q/8Qv0pOFexuQn3xn0g8_E7UAZoZjcSudR3eCadt2r1ic.cache +0 -0
  283. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/AE/AEkMvfX2UxO0g0t28U8GjbECOIWvVNlR03X0ab1M4tE.cache +1 -0
  284. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/AR/ARfYs31IhL3pDDp_oJE4RzmDigur1JRJkqZpRTyt1M8.cache +0 -0
  285. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/Bz/BzORlUIjpUN9Hsz7XbBmcaQFd_l4HfoJkJw0t4nAKjc.cache +0 -0
  286. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/C5/C5D4T0_nOZRxlB1Kr3YBjpAz13VAaGm5141p_IqSHEw.cache +3 -0
  287. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/D2/D2ri1FdDjnUlgaCehETUAH9MBudGFni8BhvIeGwF46s.cache +1 -0
  288. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/DX/DXbHDrIcECN1YE2zwFlHXwUEsa9Nc1OnPX_baI13PI8.cache +1 -0
  289. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/EK/EK4OLCBAIT0sqfYnC571wtOio3A88k5mjqemmHXRvME.cache +0 -0
  290. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/ER/ERPQ7A3b0mTnn9d8QlhN1aXbgctkxjyHHMSFndZKr8Q.cache +1 -0
  291. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/Ex/Exni9T-N0D00xhk9o73AIRL5YUOyHlJTj0i9YuzvnvQ.cache +1 -0
  292. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/F7/F74fucogx91yB5PW70H7x0uAJV_sYuVfbAg73rR-wUI.cache +3 -0
  293. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/H5/H5OObbRUl_LDveW5FbD_ypXLGfV1jkVsOYxMVonPdRU.cache +0 -0
  294. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/HC/HCDOUd7-S45aJ_PjVAC_Vmjyud3i1aQv4cE3t9_Z3Dw.cache +2 -0
  295. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/HZ/HZ1iRdzAHZ8o4HrWUPniUmrldI0rrw3czGHIlhKx20Q.cache +2 -0
  296. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/Hx/HxDhLNAjgpAjWKLIYCTcv1gXd11GGWXDRkGMlW1ZL4o.cache +1 -0
  297. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/IW/IWKVc2Gu-3rbS86e5x9A7ObGXbPJIewKUHDwr5iVfF0.cache +1 -0
  298. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/K9/K9crSvC2UPnYrdvz_jmuiFaHNpGz63JZnWi2--YxO7A.cache +1 -0
  299. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/KU/KUadIyonXR1Vyz07b6lra7kQIWQVonzIiOzZCJOK4IE.cache +3 -0
  300. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/Kq/Kqu-8GldLxbnQ5PYr_P_Xv6O-g9ty5ReXacceHUMDiY.cache +0 -0
  301. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/Kz/KzLDCKAT9oKrukAg9tFB8mtVV7bPiIGpiFUeS1TljEQ.cache +0 -0
  302. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/LG/LGE964MRn5WMX_YbXsO2igHkYOYhxyjImaCJDwBtS3Y.cache +1 -0
  303. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/LW/LWYc1nv4Bh5BbSrhl4B1cnaH5Qqks2CqNagjBrxfoDY.cache +0 -0
  304. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/MC/MCuEd_HWd5C2COVhVm23pI9wjRXLZI7gB5cNb6b_5X4.cache +1 -0
  305. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/Mb/MbgYygU0CWG73XoEOS94Vyil9b_iyKja00eXefGa5LM.cache +0 -0
  306. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/Mm/MmSp1Be-PB_hAasIwNDehj1aIpBVchE9WrMEIgD67SA.cache +1 -0
  307. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/NA/NA7TG8OGXra5NGU5ptqd0TbvuCX0sB2U1SUbbOgo_ik.cache +1 -0
  308. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/Ng/NgoumFe4ZOSieHJ2XRgYhOlgTLS35s0DyU58x7HfI2A.cache +0 -0
  309. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/PD/PD99Bcd5AQWB3NVDhz4dX9LI8A31bqUs4N-qUdEFCAE.cache +1 -0
  310. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/PI/PIysz08byyvXlaQfthLgm79fjzz0rZ0el42dAQq2hf8.cache +1 -0
  311. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/P_/P_UMpytd32vzaBB9OmSyfMhsloRkvkvWbGJU1cY-_T0.cache +1 -0
  312. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/Q7/Q7JnF7XNGFTeq0tZ_T2eaASvv6XImGz7QxxPWYcA3g0.cache +1 -0
  313. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/R6/R6W1OhmXADlwn2paOoImbgcKCpB8tY4uwtVA27HImuc.cache +3 -0
  314. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/Rs/RscE5VBWfyXMQo35So2JtRTyNa8kpDdAjWTM96exJtw.cache +1 -0
  315. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/SB/SByKDoOgon_c4yw7Hg6SUt7e3nBnAiFe0PmKjQKgP38.cache +1 -0
  316. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/TM/TMb1cGxkrsKz17sDCtqbWN-Jh6QxyKU_ltbBTBTsZVc.cache +0 -0
  317. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/Tp/TpmeWw1QJfLYcmHo3aqXMUTmK3_tppjOTY6Bhmm5z4c.cache +1 -0
  318. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/Uv/UvwNLurdraCmHtUt2p2sAyLjc0CLIi4rMrgbZ_gX3QU.cache +0 -0
  319. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/Uz/UzRlBw63ovNsxNNbz6WVQPkQx_g01AT7k9JzvmLbmZ8.cache +0 -0
  320. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/VS/VSliUoy2QKm5bR_26CTaylVZY4o61YuE0gr5kqU6UJE.cache +0 -0
  321. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/Vr/VrtEHnJmqjZwGxBqPWkxmfbuNoZ_ZlWNmLzKRC924FU.cache +1 -0
  322. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/W5/W5NIwCJ2YK1p63ZkfQtu4M00FVW772ITtEBrY9xYfYI.cache +1 -0
  323. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/Xk/XkVHFvPaI-xAbAcXZSv_EslOO0sXQSOJi2v9-w5UyE4.cache +1 -0
  324. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/Xv/XvoUclLVplyO9UQw8e-98EJElxKytnIKdeiw8cN1tAk.cache +1 -0
  325. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/Yp/YpBWosQuOX-dGPr1EDa4wnkCPyZdLhq-0vKhfbMWsUY.cache +0 -0
  326. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/Yu/YubKG280u8nFXEY4CvadpgzyDbeevIL7SFUQeFA_0X4.cache +0 -0
  327. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/Zj/ZjK1fvOKdajGTfU5pRn8x2UWgX8GWvuTXo24RENXREM.cache +1 -0
  328. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/_U/_Uz5da-URnRhVpIycPwOq3dvEZay17seoAYyPNNT_d4.cache +1 -0
  329. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/_v/_vHhLuv_HO3ndie5PLld1rfmAfh8Y54vtbj14lnA97w.cache +0 -0
  330. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/aF/aFH86QOIHdQC7ZEGpM8MR_9E4H3_VvYLHAQpVSe7foc.cache +1 -0
  331. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/aQ/aQL0CNPS5ESzN5XcS9o8NF7i4bv4pCm0xdrA7vfw5fc.cache +2 -0
  332. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/aR/aR5t7yCAR6IoNonATlf4QuZZSFc4k_ERK1u2fltqois.cache +1 -0
  333. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/bD/bDIuRJAlDi98cyI-tv6gf95cK6b2lDclVk6gw7-4yQE.cache +1 -0
  334. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/bl/blP7I9wrpMZirmqxSinkxvHgn7dwfxBAvHlUkCTQf9Q.cache +1 -0
  335. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/bu/buXbbv7z8SqC7DAPe_4Oip10Xm9GRMFE9VIlCHH3pDQ.cache +1 -0
  336. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/c7/c7CooReQb2ejxEumMNCGRid6lhlPFxxlYhiSx0BnFf4.cache +1 -0
  337. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/dA/dAHQRa7vNh2S7w1XeJtr1U_6dY_0QjlBx4dYo1UQHOg.cache +1 -0
  338. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/dG/dG2st3mUGsh-8yC115nqU2IltElHJVNhu2vRfijxs20.cache +1 -0
  339. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/dp/dpzW4cK3NsJEHAYf7z-nszapTBk7oQrhBPjmkIoZoXQ.cache +1 -0
  340. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/eJ/eJhiyiHTMJUDd_OqCXD93jBwAivnKRBa5x5qtFrxQj8.cache +1 -0
  341. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/fR/fRbCj1aNB38O-9pznPKZJ-EZoFXBeVilAs0WroTkIEM.cache +1 -0
  342. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/fU/fUQKkajuOuSLJQtRtjum4rOrJsTBFTgtwktNG4QVlrQ.cache +1 -0
  343. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/fq/fqqy6XMocl_Tx0nWsOC1LQ_uj3jUrV-CN8kMgtDR0Bc.cache +2 -0
  344. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/gd/gdC8KjHpTRTYsyeT0HoM5RR_ZKDCK_4XKXQO81ArNlM.cache +0 -0
  345. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/i_/i_s59CkDPBCbkVzR2yxiT9kpEI1B0pO0OYOIwTGpkcI.cache +2 -0
  346. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/ip/ipi1NeZWfWKRKJ3wXF6d_iPE8V0BdYHjDxYhBLc98A8.cache +0 -0
  347. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/j1/j1BQXikuCXkgfl_ekvX7byh1qZLEg4hhbmTdGdJVijs.cache +0 -0
  348. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/jK/jKHqW1VBzFtw_WgOZ-5WFrod_nbiYJ_Duey1VZXs3Mo.cache +0 -0
  349. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/jU/jUmxOIOwQBdZhDyVmTtD0UUEWZz_9Iu64WY59bXHgs0.cache +1 -0
  350. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/kD/kDartayL6A6j26rd-NkFIU9yqvIIJh9IUdiLsbuHoPY.cache +1 -0
  351. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/lS/lStvx9Beg2l4s8L-QdTSKuc5_qQPQAZPnIcRI7JkpPE.cache +2 -0
  352. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/nI/nIKQa784qYcxM8_rmLncqiSL4jWWsKrqq19GrEprQ34.cache +1 -0
  353. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/n_/n_xYqQYhwEMQknb3jFQnjlxxBE9TzMNHCdJ-bEyZFIw.cache +2 -0
  354. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/nq/nqBvCfX72u2EvAyNfHt3upjIFz009V5YYgwPmmaNRH4.cache +3 -0
  355. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/nt/ntry6y5LOGB3mXS76ylx-eIcul__UqoQoqB4-0eaNnI.cache +2 -0
  356. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/nx/nxTv3sKVUQZADJyM3dPaVmUA78MIsMLD_K279yN_GsI.cache +2 -0
  357. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/qq/qqeUBxpDPTNXL2hYWXX8t_E_jxRkRpjhJR-FcdiLWr0.cache +3 -0
  358. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/qt/qtFUQpglBnMnPpRsGKkhr2rqj9Ub3yOf_h01fudm3pc.cache +0 -0
  359. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/sm/smkjNAEzX7uLiRZnQA38poQvnhHE5uHIlMpkirr_K04.cache +2 -0
  360. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/tT/tTXQZvDRiDXhq7fbuy2-ynEkHbWEWkZixvWp8TOC7vQ.cache +1 -0
  361. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/v_/v_O7CAdXG7icZucqoA971FxfXpz7XWC8PtjH-Z1HIFU.cache +3 -0
  362. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/vw/vw4hWcAaXGLEo2E8KRM86fVgJAvs7q3qkZYmkI2UYG0.cache +2 -0
  363. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/w8/w8XS90xe44-zLTirkVNvEMgky0Iu-y4R4tWoQTHOkWA.cache +1 -0
  364. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/wH/wHiXMAfKVNHdoxvX_7U_fJX97Kv2TDg5VZs6QQGgM7k.cache +1 -0
  365. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/wY/wYXscG863_Dznp_gsU3c1NlFGjKgloZPKnaFeHYhgLg.cache +0 -0
  366. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/wi/win_v0ZNu-l7AoRx8w3ls1xcy0mUExLBVMCSr5oaJFc.cache +0 -0
  367. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/ws/wsn2nUkOEHSwCK9Q1WpZekvvnYE5COQwF3keiKR9-0A.cache +1 -0
  368. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/yM/yMREEbi29WAWRdWlQTj_ovW5SHtEt1exOy8aWy1PCI4.cache +1 -0
  369. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/yq/yqxTsMP8kmCSie9aYhLgHs_Db7h-sSa5vmqZZJUtwv0.cache +0 -0
  370. data/spec/dummy~/tmp/cache/assets/sprockets/v3.0/yr/yrp_60uUSk5SlU1028XR4AIpun11BkJJOvIgatVUYBQ.cache +2 -0
  371. data/spec/dummy~/tmp/development_secret.txt +1 -0
  372. data/spec/factories/cmor/user_area/users.rb +15 -0
  373. data/spec/features/authentication_feature_spec.rb +32 -0
  374. data/spec/features/registration_feature_spec.rb +76 -0
  375. data/spec/models/cmor/user_area/user_spec.rb +7 -0
  376. data/spec/models/generic_spec.rb +49 -0
  377. data/spec/models/i18n_spec.rb +40 -0
  378. data/spec/models~/generic_spec.rb +33 -0
  379. data/spec/rails_helper.rb +62 -0
  380. data/spec/rails_helper.rb~ +57 -0
  381. data/spec/services/cmor/user_area/create_default_user_service_spec.rb +36 -0
  382. data/spec/spec_helper.rb +96 -0
  383. data/spec/spec_helper.rb~ +90 -0
  384. data/spec/support/capybara.rb +1 -0
  385. data/spec/support/factory_bot.rb +5 -0
  386. data/spec/support/pry-rails.rb +1 -0
  387. data/spec/support/rao-shoulda_matchers.rb +5 -0
  388. data/spec/support/shoulda_matchers.rb +8 -0
  389. data/spec/support~/capybara.rb +1 -0
  390. data/spec/support~/factory_girl.rb +5 -0
  391. data/spec/support~/formulaic.rb +5 -0
  392. metadata +797 -0
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json]
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,33 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # The following keys must be escaped otherwise they will not be retrieved by
20
+ # the default I18n backend:
21
+ #
22
+ # true, false, on, off, yes, no
23
+ #
24
+ # Instead, surround them with single quotes.
25
+ #
26
+ # en:
27
+ # 'true': 'foo'
28
+ #
29
+ # To learn more, please read the Rails Internationalization guide
30
+ # available at http://guides.rubyonrails.org/i18n.html.
31
+
32
+ en:
33
+ hello: "Hello world"
@@ -0,0 +1,31 @@
1
+ en:
2
+ simple_form:
3
+ "yes": 'Yes'
4
+ "no": 'No'
5
+ required:
6
+ text: 'required'
7
+ mark: '*'
8
+ # You can uncomment the line below if you need to overwrite the whole required html.
9
+ # When using html, text and mark won't be used.
10
+ # html: '<abbr title="required">*</abbr>'
11
+ error_notification:
12
+ default_message: "Please review the problems below:"
13
+ # Examples
14
+ # labels:
15
+ # defaults:
16
+ # password: 'Password'
17
+ # user:
18
+ # new:
19
+ # email: 'E-mail to sign in.'
20
+ # edit:
21
+ # email: 'E-mail.'
22
+ # hints:
23
+ # defaults:
24
+ # username: 'User name to sign in.'
25
+ # password: 'No special characters, please.'
26
+ # include_blanks:
27
+ # defaults:
28
+ # age: 'Rather not say'
29
+ # prompts:
30
+ # defaults:
31
+ # age: 'Select your age'
@@ -0,0 +1,34 @@
1
+ # Puma can serve each request in a thread from an internal thread pool.
2
+ # The `threads` method setting takes two numbers: a minimum and maximum.
3
+ # Any libraries that use thread pools should be configured to match
4
+ # the maximum value specified for Puma. Default is set to 5 threads for minimum
5
+ # and maximum; this matches the default thread size of Active Record.
6
+ #
7
+ threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 }
8
+ threads threads_count, threads_count
9
+
10
+ # Specifies the `port` that Puma will listen on to receive requests; default is 3000.
11
+ #
12
+ port ENV.fetch("PORT") { 3000 }
13
+
14
+ # Specifies the `environment` that Puma will run in.
15
+ #
16
+ environment ENV.fetch("RAILS_ENV") { "development" }
17
+
18
+ # Specifies the number of `workers` to boot in clustered mode.
19
+ # Workers are forked webserver processes. If using threads and workers together
20
+ # the concurrency of the application would be max `threads` * `workers`.
21
+ # Workers do not work on JRuby or Windows (both of which do not support
22
+ # processes).
23
+ #
24
+ # workers ENV.fetch("WEB_CONCURRENCY") { 2 }
25
+
26
+ # Use the `preload_app!` method when specifying a `workers` number.
27
+ # This directive tells Puma to first boot the application and load code
28
+ # before forking the application. This takes advantage of Copy On Write
29
+ # process behavior so workers use less memory.
30
+ #
31
+ # preload_app!
32
+
33
+ # Allow puma to be restarted by `rails restart` command.
34
+ plugin :tmp_restart
@@ -0,0 +1,6 @@
1
+ Rails.application.routes.draw do
2
+
3
+ mount Cmor::UserArea::Engine, at: '/'
4
+ # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
5
+ localized { root to: 'home#index' }
6
+ end
@@ -0,0 +1,6 @@
1
+ %w[
2
+ .ruby-version
3
+ .rbenv-vars
4
+ tmp/restart.txt
5
+ tmp/caching-dev.txt
6
+ ].each { |path| Spring.watch(path) }
@@ -0,0 +1,34 @@
1
+ test:
2
+ service: Disk
3
+ root: <%= Rails.root.join("tmp/storage") %>
4
+
5
+ local:
6
+ service: Disk
7
+ root: <%= Rails.root.join("storage") %>
8
+
9
+ # Use rails credentials:edit to set the AWS secrets (as aws:access_key_id|secret_access_key)
10
+ # amazon:
11
+ # service: S3
12
+ # access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %>
13
+ # secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %>
14
+ # region: us-east-1
15
+ # bucket: your_own_bucket
16
+
17
+ # Remember not to checkin your GCS keyfile to a repository
18
+ # google:
19
+ # service: GCS
20
+ # project: your_project
21
+ # credentials: <%= Rails.root.join("path/to/gcs.keyfile") %>
22
+ # bucket: your_own_bucket
23
+
24
+ # Use rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key)
25
+ # microsoft:
26
+ # service: AzureStorage
27
+ # storage_account_name: your_account_name
28
+ # storage_access_key: <%= Rails.application.credentials.dig(:azure_storage, :storage_access_key) %>
29
+ # container: your_container_name
30
+
31
+ # mirror:
32
+ # service: Mirror
33
+ # primary: local
34
+ # mirrors: [ amazon, google, microsoft ]
Binary file
@@ -0,0 +1,27 @@
1
+ # This migration comes from active_storage (originally 20170806125915)
2
+ class CreateActiveStorageTables < ActiveRecord::Migration[5.2]
3
+ def change
4
+ create_table :active_storage_blobs do |t|
5
+ t.string :key, null: false
6
+ t.string :filename, null: false
7
+ t.string :content_type
8
+ t.text :metadata
9
+ t.bigint :byte_size, null: false
10
+ t.string :checksum, null: false
11
+ t.datetime :created_at, null: false
12
+
13
+ t.index [ :key ], unique: true
14
+ end
15
+
16
+ create_table :active_storage_attachments do |t|
17
+ t.string :name, null: false
18
+ t.references :record, null: false, polymorphic: true, index: false
19
+ t.references :blob, null: false
20
+
21
+ t.datetime :created_at, null: false
22
+
23
+ t.index [ :record_type, :record_id, :name, :blob_id ], name: "index_active_storage_attachments_uniqueness", unique: true
24
+ t.foreign_key :active_storage_blobs, column: :blob_id
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,38 @@
1
+ # This migration comes from cmor_user_area (originally 20160115181043)
2
+ class CreateCmorUserAreaUsers < ActiveRecord::Migration[4.2]
3
+ def change
4
+ create_table :cmor_user_area_users do |t|
5
+ # Authlogic::ActsAsAuthentic::Email
6
+ t.string :email
7
+
8
+ # Authlogic::ActsAsAuthentic::Password
9
+ t.string :crypted_password
10
+ t.string :password_salt
11
+
12
+ # Authlogic::ActsAsAuthentic::PersistenceToken
13
+ t.string :persistence_token
14
+
15
+ # Authlogic::ActsAsAuthentic::SingleAccessToken
16
+ t.string :single_access_token
17
+
18
+ # Authlogic::ActsAsAuthentic::PerishableToken
19
+ t.string :perishable_token
20
+
21
+ # Authlogic::Session::MagicColumns
22
+ t.integer :login_count, default: 0, null: false
23
+ t.integer :failed_login_count, default: 0, null: false
24
+ t.datetime :last_request_at
25
+ t.datetime :current_login_at
26
+ t.datetime :last_login_at
27
+ t.string :current_login_ip
28
+ t.string :last_login_ip
29
+
30
+ # Authlogic::Session::MagicStates
31
+ t.boolean :active, default: false
32
+ t.boolean :approved, default: false
33
+ t.boolean :confirmed, default: false
34
+
35
+ t.timestamps null: false
36
+ end
37
+ end
38
+ end
@@ -0,0 +1,57 @@
1
+ # This file is auto-generated from the current state of the database. Instead
2
+ # of editing this file, please use the migrations feature of Active Record to
3
+ # incrementally modify your database, and then regenerate this schema definition.
4
+ #
5
+ # Note that this schema.rb definition is the authoritative source for your
6
+ # database schema. If you need to create the application database on another
7
+ # system, you should be using db:schema:load, not running all the migrations
8
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
9
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
10
+ #
11
+ # It's strongly recommended that you check this file into your version control system.
12
+
13
+ ActiveRecord::Schema.define(version: 2019_03_25_182124) do
14
+
15
+ create_table "active_storage_attachments", force: :cascade do |t|
16
+ t.string "name", null: false
17
+ t.string "record_type", null: false
18
+ t.integer "record_id", null: false
19
+ t.integer "blob_id", null: false
20
+ t.datetime "created_at", null: false
21
+ t.index ["blob_id"], name: "index_active_storage_attachments_on_blob_id"
22
+ t.index ["record_type", "record_id", "name", "blob_id"], name: "index_active_storage_attachments_uniqueness", unique: true
23
+ end
24
+
25
+ create_table "active_storage_blobs", force: :cascade do |t|
26
+ t.string "key", null: false
27
+ t.string "filename", null: false
28
+ t.string "content_type"
29
+ t.text "metadata"
30
+ t.bigint "byte_size", null: false
31
+ t.string "checksum", null: false
32
+ t.datetime "created_at", null: false
33
+ t.index ["key"], name: "index_active_storage_blobs_on_key", unique: true
34
+ end
35
+
36
+ create_table "cmor_user_area_users", force: :cascade do |t|
37
+ t.string "email"
38
+ t.string "crypted_password"
39
+ t.string "password_salt"
40
+ t.string "persistence_token"
41
+ t.string "single_access_token"
42
+ t.string "perishable_token"
43
+ t.integer "login_count", default: 0, null: false
44
+ t.integer "failed_login_count", default: 0, null: false
45
+ t.datetime "last_request_at"
46
+ t.datetime "current_login_at"
47
+ t.datetime "last_login_at"
48
+ t.string "current_login_ip"
49
+ t.string "last_login_ip"
50
+ t.boolean "active", default: false
51
+ t.boolean "approved", default: false
52
+ t.boolean "confirmed", default: false
53
+ t.datetime "created_at", null: false
54
+ t.datetime "updated_at", null: false
55
+ end
56
+
57
+ end
Binary file
@@ -0,0 +1,12 @@
1
+ -# frozen_string_literal: true
2
+ = simple_form_for(@<%= singular_table_name %>) do |f|
3
+ = f.error_notification
4
+ = f.error_notification message: f.object.errors[:base].to_sentence if f.object.errors[:base].present?
5
+
6
+ .form-inputs
7
+ <%- attributes.each do |attribute| -%>
8
+ = f.<%= attribute.reference? ? :association : :input %> :<%= attribute.name %>
9
+ <%- end -%>
10
+
11
+ .form-actions
12
+ = f.button :submit
@@ -0,0 +1,108 @@
1
+  (0.2ms) SELECT sqlite_version(*)
2
+ ↳ bin/rails:4
3
+  (20.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
4
+ ↳ bin/rails:4
5
+  (16.3ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
6
+ ↳ bin/rails:4
7
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
8
+ ↳ bin/rails:4
9
+ Migrating to CreateActiveStorageTables (20190325182101)
10
+  (0.2ms) begin transaction
11
+ ↳ bin/rails:4
12
+  (0.7ms) CREATE TABLE "active_storage_blobs" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar NOT NULL, "filename" varchar NOT NULL, "content_type" varchar, "metadata" text, "byte_size" bigint NOT NULL, "checksum" varchar NOT NULL, "created_at" datetime NOT NULL)
13
+ ↳ db/migrate/20190325182101_create_active_storage_tables.active_storage.rb:4
14
+  (0.8ms) CREATE UNIQUE INDEX "index_active_storage_blobs_on_key" ON "active_storage_blobs" ("key")
15
+ ↳ db/migrate/20190325182101_create_active_storage_tables.active_storage.rb:4
16
+  (0.4ms) CREATE TABLE "active_storage_attachments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "record_type" varchar NOT NULL, "record_id" integer NOT NULL, "blob_id" integer NOT NULL, "created_at" datetime NOT NULL, CONSTRAINT "fk_rails_c3b3935057"
17
+ FOREIGN KEY ("blob_id")
18
+ REFERENCES "active_storage_blobs" ("id")
19
+ )
20
+ ↳ db/migrate/20190325182101_create_active_storage_tables.active_storage.rb:16
21
+  (0.4ms) CREATE INDEX "index_active_storage_attachments_on_blob_id" ON "active_storage_attachments" ("blob_id")
22
+ ↳ db/migrate/20190325182101_create_active_storage_tables.active_storage.rb:16
23
+  (0.4ms) CREATE UNIQUE INDEX "index_active_storage_attachments_uniqueness" ON "active_storage_attachments" ("record_type", "record_id", "name", "blob_id")
24
+ ↳ db/migrate/20190325182101_create_active_storage_tables.active_storage.rb:16
25
+ ActiveRecord::SchemaMigration Create (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190325182101"]]
26
+ ↳ bin/rails:4
27
+  (12.4ms) commit transaction
28
+ ↳ bin/rails:4
29
+ Migrating to CreateCmorUserAreaUsers (20190325182124)
30
+  (0.1ms) begin transaction
31
+ ↳ bin/rails:4
32
+  (0.7ms) CREATE TABLE "cmor_user_area_users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar, "crypted_password" varchar, "password_salt" varchar, "persistence_token" varchar, "single_access_token" varchar, "perishable_token" varchar, "login_count" integer DEFAULT 0 NOT NULL, "failed_login_count" integer DEFAULT 0 NOT NULL, "last_request_at" datetime, "current_login_at" datetime, "last_login_at" datetime, "current_login_ip" varchar, "last_login_ip" varchar, "active" boolean DEFAULT 0, "approved" boolean DEFAULT 0, "confirmed" boolean DEFAULT 0, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
33
+ ↳ db/migrate/20190325182124_create_cmor_user_area_users.cmor_user_area.rb:4
34
+ ActiveRecord::SchemaMigration Create (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190325182124"]]
35
+ ↳ bin/rails:4
36
+  (25.8ms) commit transaction
37
+ ↳ bin/rails:4
38
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
39
+ ↳ bin/rails:4
40
+  (0.1ms) begin transaction
41
+ ↳ bin/rails:4
42
+ ActiveRecord::InternalMetadata Create (0.7ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2019-03-25 18:21:24.975111"], ["updated_at", "2019-03-25 18:21:24.975111"]]
43
+ ↳ bin/rails:4
44
+  (19.2ms) commit transaction
45
+ ↳ bin/rails:4
46
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
47
+ ↳ bin/rails:4
48
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
49
+ ↳ bin/rails:4
50
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
51
+ ↳ bin/rails:4
52
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
53
+ ↳ bin/rails:4
54
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
55
+ ↳ bin/rails:4
56
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
57
+ ↳ bin/rails:4
58
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
59
+ ↳ bin/rails:4
60
+  (0.1ms) DROP TABLE IF EXISTS "active_storage_attachments"
61
+ ↳ db/schema.rb:15
62
+  (0.2ms) SELECT sqlite_version(*)
63
+ ↳ db/schema.rb:15
64
+  (5.6ms) CREATE TABLE "active_storage_attachments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "record_type" varchar NOT NULL, "record_id" integer NOT NULL, "blob_id" integer NOT NULL, "created_at" datetime NOT NULL)
65
+ ↳ db/schema.rb:15
66
+  (4.7ms) CREATE INDEX "index_active_storage_attachments_on_blob_id" ON "active_storage_attachments" ("blob_id")
67
+ ↳ db/schema.rb:15
68
+  (4.2ms) CREATE UNIQUE INDEX "index_active_storage_attachments_uniqueness" ON "active_storage_attachments" ("record_type", "record_id", "name", "blob_id")
69
+ ↳ db/schema.rb:15
70
+  (0.2ms) DROP TABLE IF EXISTS "active_storage_blobs"
71
+ ↳ db/schema.rb:25
72
+  (4.6ms) CREATE TABLE "active_storage_blobs" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar NOT NULL, "filename" varchar NOT NULL, "content_type" varchar, "metadata" text, "byte_size" bigint NOT NULL, "checksum" varchar NOT NULL, "created_at" datetime NOT NULL)
73
+ ↳ db/schema.rb:25
74
+  (3.9ms) CREATE UNIQUE INDEX "index_active_storage_blobs_on_key" ON "active_storage_blobs" ("key")
75
+ ↳ db/schema.rb:25
76
+  (0.3ms) DROP TABLE IF EXISTS "cmor_user_area_users"
77
+ ↳ db/schema.rb:36
78
+  (4.0ms) CREATE TABLE "cmor_user_area_users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar, "crypted_password" varchar, "password_salt" varchar, "persistence_token" varchar, "single_access_token" varchar, "perishable_token" varchar, "login_count" integer DEFAULT 0 NOT NULL, "failed_login_count" integer DEFAULT 0 NOT NULL, "last_request_at" datetime, "current_login_at" datetime, "last_login_at" datetime, "current_login_ip" varchar, "last_login_ip" varchar, "active" boolean DEFAULT 0, "approved" boolean DEFAULT 0, "confirmed" boolean DEFAULT 0, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
79
+ ↳ db/schema.rb:36
80
+  (4.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
81
+ ↳ db/schema.rb:13
82
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
83
+ ↳ db/schema.rb:13
84
+  (4.1ms) INSERT INTO "schema_migrations" (version) VALUES (20190325182124)
85
+ ↳ db/schema.rb:13
86
+  (4.1ms) INSERT INTO "schema_migrations" (version) VALUES
87
+ (20190325182101);
88
+
89
+ 
90
+ ↳ db/schema.rb:13
91
+  (6.1ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
92
+ ↳ db/schema.rb:13
93
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
94
+ ↳ db/schema.rb:13
95
+  (0.1ms) begin transaction
96
+ ↳ db/schema.rb:13
97
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2019-03-25 18:21:25.106012"], ["updated_at", "2019-03-25 18:21:25.106012"]]
98
+ ↳ db/schema.rb:13
99
+  (3.3ms) commit transaction
100
+ ↳ db/schema.rb:13
101
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
102
+ ↳ bin/rails:4
103
+  (0.1ms) begin transaction
104
+ ↳ bin/rails:4
105
+ ActiveRecord::InternalMetadata Update (0.3ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2019-03-25 18:21:25.118106"], ["key", "environment"]]
106
+ ↳ bin/rails:4
107
+  (5.2ms) commit transaction
108
+ ↳ bin/rails:4
@@ -0,0 +1,2471 @@
1
+  (0.1ms) begin transaction
2
+  (0.2ms) SAVEPOINT active_record_1
3
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "5cdab6f51ec545cf06facbac044c319ba8eeb7f0e5936cf609699d552d08e6b634ae9e86f2d2c3ec38f6d8fc22518ead31cfcb590baafc1b109f299251f6d704"], ["LIMIT", 1]]
4
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "b6agFr0bI3TdDRN5-pPq"], ["LIMIT", 1]]
5
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
6
+ Cmor::UserArea::User Create (0.6ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$1W6cFHBxPaH7UXAvQkjJku6jujuBWivrGRZXHfQS5FKw8wNy0zsZy"], ["password_salt", "-0i0vlu2Pe1FR4htT_En"], ["persistence_token", "5cdab6f51ec545cf06facbac044c319ba8eeb7f0e5936cf609699d552d08e6b634ae9e86f2d2c3ec38f6d8fc22518ead31cfcb590baafc1b109f299251f6d704"], ["single_access_token", "b6agFr0bI3TdDRN5-pPq"], ["perishable_token", "nPKUBnbGUwrV4l10xNoq"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 18:21:34.236046"], ["updated_at", "2019-03-25 18:21:34.236046"]]
7
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 19:21:34 +0100
9
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
10
+ Parameters: {"locale"=>"de"}
11
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
12
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (4.5ms)
13
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (14.0ms)
14
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (214.1ms)
15
+ Completed 200 OK in 735ms (Views: 733.1ms | ActiveRecord: 0.0ms)
16
+  (0.2ms) rollback transaction
17
+  (0.1ms) begin transaction
18
+  (0.3ms) SAVEPOINT active_record_1
19
+ Cmor::UserArea::User Exists (0.5ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "d22bbb2e71e01b9e7544c1b74bbf3ecbd84dc2ae1a6add5db156967568e54031e816a78a0092b622ffa71dc55775cc5082ace94726b33a9c87fb1dd909cce555"], ["LIMIT", 1]]
20
+ Cmor::UserArea::User Exists (0.5ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "Q2434ojKR3AVMWLN_iPj"], ["LIMIT", 1]]
21
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
22
+ Cmor::UserArea::User Create (1.3ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$IpqhTPjkYYoB5k9LynaTNe0XsJf4pF5AWUIvzZD5Ck.xJue4E9JXG"], ["password_salt", "DqLm6gpF4xnXKYoWJPlu"], ["persistence_token", "d22bbb2e71e01b9e7544c1b74bbf3ecbd84dc2ae1a6add5db156967568e54031e816a78a0092b622ffa71dc55775cc5082ace94726b33a9c87fb1dd909cce555"], ["single_access_token", "Q2434ojKR3AVMWLN_iPj"], ["perishable_token", "jiUjpVW6pxeUooPNRocD"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 18:21:35.152649"], ["updated_at", "2019-03-25 18:21:35.152649"]]
23
+  (0.1ms) RELEASE SAVEPOINT active_record_1
24
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 19:21:35 +0100
25
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
26
+ Parameters: {"locale"=>"de"}
27
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
28
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (0.1ms)
29
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (4.2ms)
30
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (11.1ms)
31
+ Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.0ms)
32
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 19:21:35 +0100
33
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
34
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
35
+ Cmor::UserArea::User Load (0.5ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
36
+  (0.2ms) SAVEPOINT active_record_1
37
+ Cmor::UserArea::User Update (0.5ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "2lnBqbuNkAPkg6qdbB5W"], ["login_count", 1], ["last_request_at", "2019-03-25 18:21:35.284510"], ["current_login_at", "2019-03-25 18:21:35.283453"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 18:21:35.303953"], ["id", 1]]
38
+  (0.1ms) RELEASE SAVEPOINT active_record_1
39
+ Redirected to http://www.example.com/
40
+ Completed 302 Found in 97ms (ActiveRecord: 1.3ms)
41
+ Started GET "/" for 127.0.0.1 at 2019-03-25 19:21:35 +0100
42
+  (0.3ms) rollback transaction
43
+  (0.2ms) begin transaction
44
+  (0.1ms) rollback transaction
45
+  (0.1ms) begin transaction
46
+  (0.1ms) rollback transaction
47
+  (0.1ms) begin transaction
48
+  (0.1ms) rollback transaction
49
+  (0.1ms) begin transaction
50
+  (0.2ms) SAVEPOINT active_record_1
51
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "c06e405eac1bf81b26916ac9b4ae556c5f917cbe20703a67562f551d6dcbac8850f73f3ba79f89bb3c182b0894996c61dc06e045fa3689d367abf01ecaecc73a"], ["LIMIT", 1]]
52
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "u1TTKu_9IXGvoe9-Pw_U"], ["LIMIT", 1]]
53
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
54
+ Cmor::UserArea::User Create (0.5ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$8wgMXH3jd.lDQW2dSKYqLOXnbd4DjkgDQHsou4FUrrW6ziQM8FVQa"], ["password_salt", "JplT310-DQetpiGwcSRC"], ["persistence_token", "c06e405eac1bf81b26916ac9b4ae556c5f917cbe20703a67562f551d6dcbac8850f73f3ba79f89bb3c182b0894996c61dc06e045fa3689d367abf01ecaecc73a"], ["single_access_token", "u1TTKu_9IXGvoe9-Pw_U"], ["perishable_token", "hEXx8fCbc4wZtMlZZkdz"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 18:21:35.405865"], ["updated_at", "2019-03-25 18:21:35.405865"]]
55
+  (0.2ms) RELEASE SAVEPOINT active_record_1
56
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 19:21:35 +0100
57
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
58
+ Parameters: {"locale"=>"de"}
59
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
60
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (0.1ms)
61
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (7.9ms)
62
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (25.0ms)
63
+ Completed 200 OK in 32ms (Views: 30.7ms | ActiveRecord: 0.0ms)
64
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 19:21:35 +0100
65
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
66
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
67
+ Cmor::UserArea::User Load (1.1ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
68
+  (0.1ms) SAVEPOINT active_record_1
69
+ Cmor::UserArea::User Update (0.4ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "EvIsiBa0oPUU-ac3i4qU"], ["login_count", 1], ["last_request_at", "2019-03-25 18:21:35.553842"], ["current_login_at", "2019-03-25 18:21:35.553705"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 18:21:35.555575"], ["id", 1]]
70
+  (0.2ms) RELEASE SAVEPOINT active_record_1
71
+ Redirected to http://www.example.com/
72
+ Completed 302 Found in 84ms (ActiveRecord: 1.9ms)
73
+ Started GET "/" for 127.0.0.1 at 2019-03-25 19:21:35 +0100
74
+ Started GET "/de/benutzer/profil/edit" for 127.0.0.1 at 2019-03-25 19:21:35 +0100
75
+ Processing by Cmor::UserArea::CurrentUsersController#edit as HTML
76
+ Parameters: {"locale"=>"de"}
77
+ Cmor::UserArea::User Load (0.4ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
78
+  (0.6ms) SAVEPOINT active_record_1
79
+ Cmor::UserArea::User Update (0.4ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "soMJZ4i31tSlnqAPB5Sn"], ["last_request_at", "2019-03-25 18:21:35.596115"], ["updated_at", "2019-03-25 18:21:35.599709"], ["id", 1]]
80
+  (0.1ms) RELEASE SAVEPOINT active_record_1
81
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application
82
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form_errors.html.haml (4.0ms)
83
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form.html.haml (8.3ms)
84
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application (32.9ms)
85
+ Completed 200 OK in 73ms (Views: 53.0ms | ActiveRecord: 1.5ms)
86
+  (0.2ms) rollback transaction
87
+  (0.1ms) begin transaction
88
+  (0.4ms) SAVEPOINT active_record_1
89
+ Cmor::UserArea::User Exists (9.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "6f3d7e25666e329f339e546ee6740dbdfb05cbbbbf398ed493a24a512be93586865801269a1fc384329eb64bcfa307b35e591558e39658ec6160b8f9bf798c2f"], ["LIMIT", 1]]
90
+ Cmor::UserArea::User Exists (0.5ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "nhW2vHfUi92z3xGD3I99"], ["LIMIT", 1]]
91
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
92
+ Cmor::UserArea::User Create (0.8ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$5ccPMCaMiFt4LUl8rM6BjOynaRvZjA5uBJhp0yZHBbBAbgNEkbFDC"], ["password_salt", "vgBhwK8h9BrSMLXkB-wf"], ["persistence_token", "6f3d7e25666e329f339e546ee6740dbdfb05cbbbbf398ed493a24a512be93586865801269a1fc384329eb64bcfa307b35e591558e39658ec6160b8f9bf798c2f"], ["single_access_token", "nhW2vHfUi92z3xGD3I99"], ["perishable_token", "4vnll-_P3wHCgukQL-fs"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 18:21:35.753687"], ["updated_at", "2019-03-25 18:21:35.753687"]]
93
+  (0.5ms) RELEASE SAVEPOINT active_record_1
94
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 19:21:35 +0100
95
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
96
+ Parameters: {"locale"=>"de"}
97
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
98
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (0.3ms)
99
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (12.3ms)
100
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (31.7ms)
101
+ Completed 200 OK in 44ms (Views: 38.4ms | ActiveRecord: 0.0ms)
102
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 19:21:35 +0100
103
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
104
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
105
+ Cmor::UserArea::User Load (0.7ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
106
+  (0.2ms) SAVEPOINT active_record_1
107
+ Cmor::UserArea::User Update (0.4ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "vVP9Lh7M3EQbOPGlzUTU"], ["login_count", 1], ["last_request_at", "2019-03-25 18:21:35.919357"], ["current_login_at", "2019-03-25 18:21:35.919207"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 18:21:35.921338"], ["id", 1]]
108
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109
+ Redirected to http://www.example.com/
110
+ Completed 302 Found in 78ms (ActiveRecord: 1.4ms)
111
+ Started GET "/" for 127.0.0.1 at 2019-03-25 19:21:35 +0100
112
+ Started GET "/de/benutzer/profil/edit" for 127.0.0.1 at 2019-03-25 19:21:35 +0100
113
+ Processing by Cmor::UserArea::CurrentUsersController#edit as HTML
114
+ Parameters: {"locale"=>"de"}
115
+ Cmor::UserArea::User Load (0.4ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
116
+  (0.1ms) SAVEPOINT active_record_1
117
+ Cmor::UserArea::User Update (0.3ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "tNp9EN0b6IwBqiuXknk9"], ["last_request_at", "2019-03-25 18:21:35.935719"], ["updated_at", "2019-03-25 18:21:35.936983"], ["id", 1]]
118
+  (0.2ms) RELEASE SAVEPOINT active_record_1
119
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application
120
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form_errors.html.haml (0.2ms)
121
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form.html.haml (8.4ms)
122
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application (14.4ms)
123
+ Completed 200 OK in 27ms (Views: 18.3ms | ActiveRecord: 1.0ms)
124
+  (0.3ms) rollback transaction
125
+  (0.2ms) begin transaction
126
+  (0.5ms) SAVEPOINT active_record_1
127
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "3bcc7790f8105fb8534b0f0594d55e17ab65bfa49651d7e1395f985936e662cdbc52f1d8fcc147749d0e233a7b4ccd76ebfc652a8997d57fb2f9baf243c5fc1b"], ["LIMIT", 1]]
128
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "HDVwxiQhpEmn8OyA0GP0"], ["LIMIT", 1]]
129
+ Cmor::UserArea::User Exists (1.4ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
130
+ Cmor::UserArea::User Create (0.9ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$awkEHv1Zeq193FIkAZ3ywegM4d0MRvoihqwOWy87TItjBrFl7f8hW"], ["password_salt", "qxtMm8V6hCEK_1vYXDMo"], ["persistence_token", "3bcc7790f8105fb8534b0f0594d55e17ab65bfa49651d7e1395f985936e662cdbc52f1d8fcc147749d0e233a7b4ccd76ebfc652a8997d57fb2f9baf243c5fc1b"], ["single_access_token", "HDVwxiQhpEmn8OyA0GP0"], ["perishable_token", "--2f4qdj4c1HZg7_jnDV"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 18:21:36.061021"], ["updated_at", "2019-03-25 18:21:36.061021"]]
131
+  (0.3ms) RELEASE SAVEPOINT active_record_1
132
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 19:21:36 +0100
133
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
134
+ Parameters: {"locale"=>"de"}
135
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
136
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (0.1ms)
137
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (7.1ms)
138
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (17.4ms)
139
+ Completed 200 OK in 27ms (Views: 24.7ms | ActiveRecord: 0.0ms)
140
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 19:21:36 +0100
141
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
142
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
143
+ Cmor::UserArea::User Load (0.6ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
144
+  (0.4ms) SAVEPOINT active_record_1
145
+ Cmor::UserArea::User Update (0.7ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "3YdO3faMZq33Onvqfg68"], ["login_count", 1], ["last_request_at", "2019-03-25 18:21:36.199422"], ["current_login_at", "2019-03-25 18:21:36.199164"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 18:21:36.202120"], ["id", 1]]
146
+  (0.1ms) RELEASE SAVEPOINT active_record_1
147
+ Redirected to http://www.example.com/
148
+ Completed 302 Found in 84ms (ActiveRecord: 1.8ms)
149
+ Started GET "/" for 127.0.0.1 at 2019-03-25 19:21:36 +0100
150
+ Started GET "/de/benutzer/profil/edit" for 127.0.0.1 at 2019-03-25 19:21:36 +0100
151
+ Processing by Cmor::UserArea::CurrentUsersController#edit as HTML
152
+ Parameters: {"locale"=>"de"}
153
+ Cmor::UserArea::User Load (0.4ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
154
+  (0.1ms) SAVEPOINT active_record_1
155
+ Cmor::UserArea::User Update (0.2ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "cDMqpMmxbLTNQBo9thFY"], ["last_request_at", "2019-03-25 18:21:36.214913"], ["updated_at", "2019-03-25 18:21:36.216060"], ["id", 1]]
156
+  (0.1ms) RELEASE SAVEPOINT active_record_1
157
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application
158
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form_errors.html.haml (0.1ms)
159
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form.html.haml (6.1ms)
160
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application (10.3ms)
161
+ Completed 200 OK in 20ms (Views: 13.3ms | ActiveRecord: 0.7ms)
162
+  (0.6ms) rollback transaction
163
+  (0.2ms) begin transaction
164
+ Started GET "/de/benutzer/profil/edit" for 127.0.0.1 at 2019-03-25 19:21:36 +0100
165
+ Processing by Cmor::UserArea::CurrentUsersController#edit as HTML
166
+ Parameters: {"locale"=>"de"}
167
+ Redirected to http://www.example.com/de/benutzer/session/new
168
+ Filter chain halted as :authenticate_user! rendered or redirected
169
+ Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
170
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 19:21:36 +0100
171
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
172
+ Parameters: {"locale"=>"de"}
173
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
174
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (0.2ms)
175
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (5.0ms)
176
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (12.0ms)
177
+ Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.0ms)
178
+  (0.4ms) rollback transaction
179
+  (0.2ms) begin transaction
180
+  (0.2ms) rollback transaction
181
+  (0.3ms) begin transaction
182
+  (0.2ms) rollback transaction
183
+  (0.1ms) begin transaction
184
+  (0.2ms) rollback transaction
185
+  (0.1ms) begin transaction
186
+ Cmor::UserArea::User Exists (0.7ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "506389d0bc4897431d26832a50fbe359ea8aa19e1ec8caaf64baa5c135655963229429534a89d3d4c407f88e743b04b98bd81425c15398f18b7376902fe5e6b6"], ["LIMIT", 1]]
187
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "yXTJC-QXo4ddPp_t-4aP"], ["LIMIT", 1]]
188
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user1@example.com"], ["LIMIT", 1]]
189
+  (0.1ms) rollback transaction
190
+  (0.2ms) begin transaction
191
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "05bba435561e327ffc5917a0a512cb5deb9f5dc7f16ae486bb49526811fc2dd3a1262ff49a8cbd6724fa8f85570e5cad989a701c74742e801694c4ce20761e82"], ["LIMIT", 1]]
192
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "TuMzdXwJN_bhpScsPXn5"], ["LIMIT", 1]]
193
+  (0.1ms) rollback transaction
194
+  (0.2ms) begin transaction
195
+  (0.9ms) SAVEPOINT active_record_1
196
+ Cmor::UserArea::User Exists (0.5ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "f86000c8d7c6236de283d81a37069a6b7985a6fafb68ccaba13643faf9749f82a02469003ee9cc7b54e6ab5f476b57aeb986a80508da8a0352ab3a2331db2af0"], ["LIMIT", 1]]
197
+ Cmor::UserArea::User Exists (0.4ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "tckk-8u04mO979AwMQKW"], ["LIMIT", 1]]
198
+ Cmor::UserArea::User Exists (0.6ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user2@example.com"], ["LIMIT", 1]]
199
+ Cmor::UserArea::User Create (0.6ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "user2@example.com"], ["crypted_password", "$2a$10$7a2S3h1Tz1IQ7t0eNU1BieI5riOMvieZw4jQCswrLhneDvdsECsc."], ["password_salt", "nSPaRAJcIuVdmEky4veU"], ["persistence_token", "f86000c8d7c6236de283d81a37069a6b7985a6fafb68ccaba13643faf9749f82a02469003ee9cc7b54e6ab5f476b57aeb986a80508da8a0352ab3a2331db2af0"], ["single_access_token", "tckk-8u04mO979AwMQKW"], ["perishable_token", "t9-6vSp-MttulQ6-6lDq"], ["created_at", "2019-03-25 18:21:36.477752"], ["updated_at", "2019-03-25 18:21:36.477752"]]
200
+  (0.3ms) RELEASE SAVEPOINT active_record_1
201
+  (0.6ms) rollback transaction
202
+  (0.1ms) begin transaction
203
+  (0.1ms) rollback transaction
204
+  (0.1ms) begin transaction
205
+  (0.1ms) rollback transaction
206
+  (0.1ms) begin transaction
207
+  (0.1ms) rollback transaction
208
+  (0.1ms) begin transaction
209
+  (0.1ms) rollback transaction
210
+  (0.1ms) begin transaction
211
+  (0.1ms) rollback transaction
212
+  (0.4ms) begin transaction
213
+  (0.2ms) rollback transaction
214
+  (0.3ms) begin transaction
215
+  (2.5ms) rollback transaction
216
+  (0.3ms) begin transaction
217
+  (0.2ms) rollback transaction
218
+  (0.1ms) begin transaction
219
+  (0.1ms) rollback transaction
220
+  (0.1ms) begin transaction
221
+  (0.1ms) rollback transaction
222
+  (0.2ms) begin transaction
223
+  (2.4ms) rollback transaction
224
+  (0.1ms) begin transaction
225
+  (0.1ms) rollback transaction
226
+  (0.0ms) begin transaction
227
+  (0.1ms) rollback transaction
228
+  (0.2ms) begin transaction
229
+  (0.1ms) rollback transaction
230
+  (0.2ms) begin transaction
231
+  (0.1ms) rollback transaction
232
+  (0.3ms) begin transaction
233
+  (0.1ms) rollback transaction
234
+  (0.1ms) begin transaction
235
+  (0.1ms) rollback transaction
236
+  (0.1ms) begin transaction
237
+  (7.7ms) rollback transaction
238
+  (0.4ms) begin transaction
239
+  (0.1ms) rollback transaction
240
+  (0.2ms) begin transaction
241
+  (0.1ms) rollback transaction
242
+  (0.2ms) begin transaction
243
+  (0.1ms) rollback transaction
244
+  (0.2ms) begin transaction
245
+  (0.1ms) rollback transaction
246
+  (0.2ms) begin transaction
247
+  (0.1ms) rollback transaction
248
+  (0.1ms) begin transaction
249
+  (0.1ms) rollback transaction
250
+  (0.1ms) begin transaction
251
+  (0.1ms) rollback transaction
252
+  (0.3ms) begin transaction
253
+  (0.1ms) rollback transaction
254
+  (0.2ms) begin transaction
255
+  (0.1ms) rollback transaction
256
+  (0.1ms) begin transaction
257
+  (0.1ms) rollback transaction
258
+  (0.2ms) begin transaction
259
+  (0.1ms) rollback transaction
260
+  (0.1ms) begin transaction
261
+  (0.1ms) rollback transaction
262
+  (0.1ms) begin transaction
263
+  (10.1ms) rollback transaction
264
+  (0.2ms) begin transaction
265
+  (0.2ms) rollback transaction
266
+  (0.1ms) begin transaction
267
+  (0.1ms) rollback transaction
268
+  (0.2ms) begin transaction
269
+  (0.1ms) rollback transaction
270
+  (0.1ms) begin transaction
271
+  (0.1ms) rollback transaction
272
+  (0.2ms) begin transaction
273
+  (0.1ms) rollback transaction
274
+  (0.2ms) begin transaction
275
+  (0.4ms) rollback transaction
276
+  (0.2ms) begin transaction
277
+  (0.2ms) rollback transaction
278
+  (0.3ms) begin transaction
279
+  (0.2ms) rollback transaction
280
+  (0.2ms) begin transaction
281
+  (0.1ms) rollback transaction
282
+  (0.1ms) begin transaction
283
+  (0.5ms) rollback transaction
284
+  (0.2ms) begin transaction
285
+  (0.1ms) rollback transaction
286
+  (0.1ms) begin transaction
287
+  (0.1ms) rollback transaction
288
+  (0.2ms) begin transaction
289
+  (0.1ms) rollback transaction
290
+  (0.2ms) begin transaction
291
+  (0.2ms) SAVEPOINT active_record_1
292
+ Cmor::UserArea::User Exists (1.0ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "089d1d66ed2b4efa90307b8d1d97104eabd6cb59b1135f4755345ab9b8f9e90226e8bda9642e6eacdb5687ce2d0e09d559807e313b3da4d39308679bdea8fb27"], ["LIMIT", 1]]
293
+ Cmor::UserArea::User Exists (0.6ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "J81AAwDtMd_NoZnUlXMV"], ["LIMIT", 1]]
294
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user3@example.com"], ["LIMIT", 1]]
295
+ Cmor::UserArea::User Create (0.4ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "user3@example.com"], ["crypted_password", "$2a$10$CrO4iP6nCWKWXCEPCkXd7u5b6Dbzu9JYTV1a8mTiG7EkmWZBcHLbW"], ["password_salt", "CN75fbGtEueu1O5y3gWS"], ["persistence_token", "089d1d66ed2b4efa90307b8d1d97104eabd6cb59b1135f4755345ab9b8f9e90226e8bda9642e6eacdb5687ce2d0e09d559807e313b3da4d39308679bdea8fb27"], ["single_access_token", "J81AAwDtMd_NoZnUlXMV"], ["perishable_token", "QosfcZjV-xTXH66NiCCO"], ["created_at", "2019-03-25 18:21:36.746339"], ["updated_at", "2019-03-25 18:21:36.746339"]]
296
+  (0.1ms) RELEASE SAVEPOINT active_record_1
297
+  (0.2ms) rollback transaction
298
+  (0.1ms) begin transaction
299
+ Cmor::UserArea::User Exists (0.7ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "40b05018c43f74ac6a5ffba6b10932183713f6781c0347c6dcccdd98cc09760532900c72175bb0b9a6d9ed59ccd8426f774673219c735a48916263c6b435c661"], ["LIMIT", 1]]
300
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "xfdDBg_bErbFZCXr4r1k"], ["LIMIT", 1]]
301
+  (0.1ms) rollback transaction
302
+  (0.2ms) begin transaction
303
+  (0.4ms) SAVEPOINT active_record_1
304
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "5a1ef95890ca583045edc9a0eea25484bc0477a8a14449c48f4bce6cae0578fa3155719ab463befcebce11446d72cbd9826c365782b694eb8380e58035a366ca"], ["LIMIT", 1]]
305
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "RYBEMc5GvPX-z1gRPjMC"], ["LIMIT", 1]]
306
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user4@example.com"], ["LIMIT", 1]]
307
+ Cmor::UserArea::User Create (17.6ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "user4@example.com"], ["crypted_password", "$2a$10$r1h/VGgBMyYwHumC/xG7NOD/ieHuyQfR1/hiD8fXyCGlZGTyfVASy"], ["password_salt", "bkWbqqzI69-9fYx4ci1Y"], ["persistence_token", "5a1ef95890ca583045edc9a0eea25484bc0477a8a14449c48f4bce6cae0578fa3155719ab463befcebce11446d72cbd9826c365782b694eb8380e58035a366ca"], ["single_access_token", "RYBEMc5GvPX-z1gRPjMC"], ["perishable_token", "toST8TK9nmQgM1VXUQr9"], ["created_at", "2019-03-25 18:21:36.837018"], ["updated_at", "2019-03-25 18:21:36.837018"]]
308
+  (0.2ms) RELEASE SAVEPOINT active_record_1
309
+  (0.1ms) SAVEPOINT active_record_1
310
+ Cmor::UserArea::User Update (0.4ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "zJUTw3HvPJ38DATfe6CR"], ["updated_at", "2019-03-25 18:21:36.860477"], ["id", 1]]
311
+  (0.1ms) RELEASE SAVEPOINT active_record_1
312
+  (0.3ms) rollback transaction
313
+  (0.1ms) begin transaction
314
+  (0.1ms) rollback transaction
315
+  (0.1ms) begin transaction
316
+  (0.3ms) SELECT COUNT(*) FROM "cmor_user_area_users"
317
+  (0.2ms) SAVEPOINT active_record_1
318
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "04e5fc6007429da173d8e41ee961fc69b7e3fe5a3d8802d790fa239a78998e18d82719bbc94c50bdfc8b90014805086fd16d04a685af263c4feebb8ed57489bb"], ["LIMIT", 1]]
319
+ Cmor::UserArea::User Exists (0.5ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "g_z-kTTJCwMrJ3c1Xe9R"], ["LIMIT", 1]]
320
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
321
+ Cmor::UserArea::User Create (0.5ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$pcQUw1lT0Uo4rSoMA6RXSOym/IoZn7lfeMFaGbuqFF3YlHvAaPgh2"], ["password_salt", "Aw-cleihBUylz7gwnGp9"], ["persistence_token", "04e5fc6007429da173d8e41ee961fc69b7e3fe5a3d8802d790fa239a78998e18d82719bbc94c50bdfc8b90014805086fd16d04a685af263c4feebb8ed57489bb"], ["single_access_token", "g_z-kTTJCwMrJ3c1Xe9R"], ["perishable_token", "5gCU6-3X8lZZyYkLSDqI"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 18:21:36.951654"], ["updated_at", "2019-03-25 18:21:36.951654"]]
322
+  (0.1ms) RELEASE SAVEPOINT active_record_1
323
+  (0.4ms) SELECT COUNT(*) FROM "cmor_user_area_users"
324
+  (0.3ms) rollback transaction
325
+  (0.2ms) begin transaction
326
+  (0.2ms) SAVEPOINT active_record_1
327
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "ef63b738299e106b3555192a5b6566870fadacd6fd51d2a0598bf934fcbea29496617b7355ebb34f65da3bc819b3c74be8e35ce996b62154055e300b555fa8f6"], ["LIMIT", 1]]
328
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "-Zt9AGjGIvJvBM98b-A6"], ["LIMIT", 1]]
329
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
330
+ Cmor::UserArea::User Create (0.6ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$QPHoie7LTuU/7eeKNUukK.BFsGjbHPmrnLUBCvtTVEMQn7R0.IFpi"], ["password_salt", "2n9__V9RtkIF_wqiAOFI"], ["persistence_token", "ef63b738299e106b3555192a5b6566870fadacd6fd51d2a0598bf934fcbea29496617b7355ebb34f65da3bc819b3c74be8e35ce996b62154055e300b555fa8f6"], ["single_access_token", "-Zt9AGjGIvJvBM98b-A6"], ["perishable_token", "3w_Pi-1mrAUXUv1EHdk5"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 18:21:37.035157"], ["updated_at", "2019-03-25 18:21:37.035157"]]
331
+  (0.9ms) RELEASE SAVEPOINT active_record_1
332
+  (0.4ms) rollback transaction
333
+  (0.2ms) begin transaction
334
+  (0.4ms) SAVEPOINT active_record_1
335
+ Cmor::UserArea::User Exists (0.5ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "9f01dc064238c39f0b36e221a9315425b1e88687150c72fc476d256706bc2616c3305fb661d28f6677f7ae615eae20fdee019daea00b6a6f048f1125e76f5f56"], ["LIMIT", 1]]
336
+ Cmor::UserArea::User Exists (1.0ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "6t_V3Y3vXZsgkDmDdsy-"], ["LIMIT", 1]]
337
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
338
+ Cmor::UserArea::User Create (0.4ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$ooVFLoLGnZYOznH6ZJpzE.oFCeJ1pxZM/S.AJER9ifCrA3RmzNoTK"], ["password_salt", "UW-EBClaYIyqfth5-wwA"], ["persistence_token", "9f01dc064238c39f0b36e221a9315425b1e88687150c72fc476d256706bc2616c3305fb661d28f6677f7ae615eae20fdee019daea00b6a6f048f1125e76f5f56"], ["single_access_token", "6t_V3Y3vXZsgkDmDdsy-"], ["perishable_token", "m7SrqSjhfOUddDjmK11b"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 18:21:37.117214"], ["updated_at", "2019-03-25 18:21:37.117214"]]
339
+  (0.2ms) RELEASE SAVEPOINT active_record_1
340
+  (0.2ms) rollback transaction
341
+  (0.1ms) begin transaction
342
+  (0.2ms) SAVEPOINT active_record_1
343
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "0e924d4d4612a55f9ed82053012375aadfe534e57b67bb3a068a2954cbd0b326ae4deeb895ee9f0f776ba34167226c6085febc0e6f52156b8f9ffa96934e23b9"], ["LIMIT", 1]]
344
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "2jjrygLTl8z7i9zg1OBH"], ["LIMIT", 1]]
345
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
346
+ Cmor::UserArea::User Create (0.4ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$3hLEw91CHz2Esu4Cpp//j.FBVl4mUfbbNrEZ3tNzZEx6VKo5brSoG"], ["password_salt", "x42lRvDIbZRhctJTTGUK"], ["persistence_token", "0e924d4d4612a55f9ed82053012375aadfe534e57b67bb3a068a2954cbd0b326ae4deeb895ee9f0f776ba34167226c6085febc0e6f52156b8f9ffa96934e23b9"], ["single_access_token", "2jjrygLTl8z7i9zg1OBH"], ["perishable_token", "XD0S7VEwQp7YHASbF3bk"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 18:21:37.193296"], ["updated_at", "2019-03-25 18:21:37.193296"]]
347
+  (0.1ms) RELEASE SAVEPOINT active_record_1
348
+  (0.1ms) rollback transaction
349
+  (0.1ms) begin transaction
350
+  (0.2ms) SAVEPOINT active_record_1
351
+ Cmor::UserArea::User Exists (0.5ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "7532dd170932248ed3ce30428db71e574256ea309f8a433732decec935517266988c630dc8ccf62c9640b22a0fe54943b2930214c8a2a770dd43847837c0e321"], ["LIMIT", 1]]
352
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "60FqQSjaTSqLN08fQBfl"], ["LIMIT", 1]]
353
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
354
+ Cmor::UserArea::User Create (0.6ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$AEYADcY3huTjq3RZlKR5l.OGSXsoT8b2.XTo/CBT.j2U8Wt.Z2qOu"], ["password_salt", "JCrkSBJLKyeN99fQIcua"], ["persistence_token", "7532dd170932248ed3ce30428db71e574256ea309f8a433732decec935517266988c630dc8ccf62c9640b22a0fe54943b2930214c8a2a770dd43847837c0e321"], ["single_access_token", "60FqQSjaTSqLN08fQBfl"], ["perishable_token", "d4UsV6uI_AVsdHWi4b-p"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 18:21:37.266865"], ["updated_at", "2019-03-25 18:21:37.266865"]]
355
+  (0.2ms) RELEASE SAVEPOINT active_record_1
356
+  (1.3ms) rollback transaction
357
+  (0.1ms) begin transaction
358
+  (0.2ms) SAVEPOINT active_record_1
359
+ Cmor::UserArea::User Exists (0.4ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "951dabaeddf10e6ac9586cafee41d9767b94913cc8224d9f48fe5e1c75fee970d6fe889ed5be9bfb7f40b492d80622b3fc3fd9fcdf81611894265ffbd5a1b94f"], ["LIMIT", 1]]
360
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "G0vZPS1gRiK7o6g1Y-EJ"], ["LIMIT", 1]]
361
+ Cmor::UserArea::User Exists (0.5ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
362
+ Cmor::UserArea::User Create (0.4ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$yptLX6PgAK.LDG19VqkH4eacFSYKbYycYVe3R44sNsEoJDj6v7LnS"], ["password_salt", "redt9wPIIgjDwkTGcLRY"], ["persistence_token", "951dabaeddf10e6ac9586cafee41d9767b94913cc8224d9f48fe5e1c75fee970d6fe889ed5be9bfb7f40b492d80622b3fc3fd9fcdf81611894265ffbd5a1b94f"], ["single_access_token", "G0vZPS1gRiK7o6g1Y-EJ"], ["perishable_token", "M8mBtCSfOTAi7a5CaPnf"], ["created_at", "2019-03-25 18:21:37.350930"], ["updated_at", "2019-03-25 18:21:37.350930"]]
363
+  (0.1ms) RELEASE SAVEPOINT active_record_1
364
+  (0.4ms) SELECT COUNT(*) FROM "cmor_user_area_users"
365
+  (0.1ms) SAVEPOINT active_record_1
366
+ Cmor::UserArea::User Exists (0.9ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "aae92b10319f8d864cb7d1e34782e671520ed12e66b1c4bfc61bfb4963cc74487b6e2628afb0cde7d013f6aef0f28560e9765c3676270623171797d18acefcbb"], ["LIMIT", 1]]
367
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "-RjQlgk-7NyMe0-ThAhh"], ["LIMIT", 1]]
368
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
369
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
370
+  (1.3ms) SELECT COUNT(*) FROM "cmor_user_area_users"
371
+  (0.4ms) rollback transaction
372
+  (0.1ms) begin transaction
373
+  (0.2ms) SAVEPOINT active_record_1
374
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "5559e8730b6dd89c9642fb061586b8aea763715c7cbb87ad28aeecc91e50ac8477c3c119347bdd42cda82b3bf68f85a0ef612c2589fb5756920e9968162b7f85"], ["LIMIT", 1]]
375
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "NAvKNtlTLQdwXqPfbC5J"], ["LIMIT", 1]]
376
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
377
+ Cmor::UserArea::User Create (0.5ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$nLBQuMo7nX1Il68nyYy.m.0AYC0u7fwdHi6sgFB6s6EN3UBKa0NeW"], ["password_salt", "K7g9TpQaRd7YLbt7etDm"], ["persistence_token", "5559e8730b6dd89c9642fb061586b8aea763715c7cbb87ad28aeecc91e50ac8477c3c119347bdd42cda82b3bf68f85a0ef612c2589fb5756920e9968162b7f85"], ["single_access_token", "NAvKNtlTLQdwXqPfbC5J"], ["perishable_token", "RjQwqpmg-Ja9u-dhZIby"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 18:28:03.640913"], ["updated_at", "2019-03-25 18:28:03.640913"]]
378
+  (0.1ms) RELEASE SAVEPOINT active_record_1
379
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 19:28:03 +0100
380
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
381
+ Parameters: {"locale"=>"de"}
382
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
383
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (5.0ms)
384
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (15.5ms)
385
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (176.6ms)
386
+ Completed 200 OK in 719ms (Views: 715.1ms | ActiveRecord: 0.0ms)
387
+  (0.2ms) rollback transaction
388
+  (0.1ms) begin transaction
389
+  (0.4ms) SAVEPOINT active_record_1
390
+ Cmor::UserArea::User Exists (3.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "467c7e9552554e7aac56a7cb8e88c2f9a25c69313eca8f7bc22ca627bfb39d7a729b6c0fbb9598d2f6d9a08d665b8c9a28cdb3e309494e90f3e00f56e5d29176"], ["LIMIT", 1]]
391
+ Cmor::UserArea::User Exists (0.4ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "dxbhCkKY30sD2iU__SQE"], ["LIMIT", 1]]
392
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
393
+ Cmor::UserArea::User Create (0.5ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$DKlAJdxvVZ/Bs/ysg8iEr.DZuXteSFDHB1DbzRbtL2U1CWN85sJ.i"], ["password_salt", "Jmg1EDvXlrRYsltEwO0f"], ["persistence_token", "467c7e9552554e7aac56a7cb8e88c2f9a25c69313eca8f7bc22ca627bfb39d7a729b6c0fbb9598d2f6d9a08d665b8c9a28cdb3e309494e90f3e00f56e5d29176"], ["single_access_token", "dxbhCkKY30sD2iU__SQE"], ["perishable_token", "ZubVBQrlTsxu8TcVHUVh"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 18:28:04.542475"], ["updated_at", "2019-03-25 18:28:04.542475"]]
394
+  (0.1ms) RELEASE SAVEPOINT active_record_1
395
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 19:28:04 +0100
396
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
397
+ Parameters: {"locale"=>"de"}
398
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
399
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (0.1ms)
400
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (9.9ms)
401
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (26.8ms)
402
+ Completed 200 OK in 35ms (Views: 33.7ms | ActiveRecord: 0.0ms)
403
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 19:28:04 +0100
404
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
405
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
406
+ Cmor::UserArea::User Load (3.6ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
407
+  (0.2ms) SAVEPOINT active_record_1
408
+ Cmor::UserArea::User Update (0.4ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "8MLueq0K6QLSMFZ4K7T0"], ["login_count", 1], ["last_request_at", "2019-03-25 18:28:04.725225"], ["current_login_at", "2019-03-25 18:28:04.724213"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 18:28:04.743906"], ["id", 1]]
409
+  (0.1ms) RELEASE SAVEPOINT active_record_1
410
+ Redirected to http://www.example.com/
411
+ Completed 302 Found in 104ms (ActiveRecord: 4.3ms)
412
+ Started GET "/" for 127.0.0.1 at 2019-03-25 19:28:04 +0100
413
+  (0.8ms) rollback transaction
414
+  (0.1ms) begin transaction
415
+  (0.1ms) rollback transaction
416
+  (0.1ms) begin transaction
417
+  (0.1ms) rollback transaction
418
+  (0.1ms) begin transaction
419
+  (0.1ms) rollback transaction
420
+  (0.1ms) begin transaction
421
+  (0.2ms) SAVEPOINT active_record_1
422
+ Cmor::UserArea::User Exists (0.7ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "f07e98e210ec53bd5749bf53938e75688add322b08d06369080e1a80fe0ac9023c4ef4aaf10dde28e2c30d65875019cf3e035cbfbf4c92b77372f9bf019723c8"], ["LIMIT", 1]]
423
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "jNf4Z3kYVGM238i8bz0G"], ["LIMIT", 1]]
424
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
425
+ Cmor::UserArea::User Create (0.7ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$pIgXg6tik86RBxZigtttAOPf8UTJSAilymhTjyGO7klwBa5FULg2u"], ["password_salt", "31UCOWn5aMAPArVgi7Os"], ["persistence_token", "f07e98e210ec53bd5749bf53938e75688add322b08d06369080e1a80fe0ac9023c4ef4aaf10dde28e2c30d65875019cf3e035cbfbf4c92b77372f9bf019723c8"], ["single_access_token", "jNf4Z3kYVGM238i8bz0G"], ["perishable_token", "jCXUHJWpFVamvlbDpvii"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 18:28:04.866658"], ["updated_at", "2019-03-25 18:28:04.866658"]]
426
+  (0.1ms) RELEASE SAVEPOINT active_record_1
427
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 19:28:04 +0100
428
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
429
+ Parameters: {"locale"=>"de"}
430
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
431
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (0.4ms)
432
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (10.5ms)
433
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (27.7ms)
434
+ Completed 200 OK in 37ms (Views: 34.4ms | ActiveRecord: 0.0ms)
435
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 19:28:04 +0100
436
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
437
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
438
+ Cmor::UserArea::User Load (0.6ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
439
+  (0.2ms) SAVEPOINT active_record_1
440
+ Cmor::UserArea::User Update (0.3ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "azjQUjN4hrPlsCrUX5cq"], ["login_count", 1], ["last_request_at", "2019-03-25 18:28:05.027139"], ["current_login_at", "2019-03-25 18:28:05.027013"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 18:28:05.029758"], ["id", 1]]
441
+  (0.1ms) RELEASE SAVEPOINT active_record_1
442
+ Redirected to http://www.example.com/
443
+ Completed 302 Found in 75ms (ActiveRecord: 1.2ms)
444
+ Started GET "/" for 127.0.0.1 at 2019-03-25 19:28:05 +0100
445
+ Started GET "/de/benutzer/profil/edit" for 127.0.0.1 at 2019-03-25 19:28:05 +0100
446
+ Processing by Cmor::UserArea::CurrentUsersController#edit as HTML
447
+ Parameters: {"locale"=>"de"}
448
+ Cmor::UserArea::User Load (1.0ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
449
+  (0.1ms) SAVEPOINT active_record_1
450
+ Cmor::UserArea::User Update (0.2ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "HlYzxv0eZaM07Ej0d65R"], ["last_request_at", "2019-03-25 18:28:05.082315"], ["updated_at", "2019-03-25 18:28:05.084438"], ["id", 1]]
451
+  (0.1ms) RELEASE SAVEPOINT active_record_1
452
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application
453
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form_errors.html.haml (7.0ms)
454
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form.html.haml (18.9ms)
455
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application (56.3ms)
456
+ Completed 200 OK in 95ms (Views: 81.0ms | ActiveRecord: 1.4ms)
457
+  (0.5ms) rollback transaction
458
+  (0.2ms) begin transaction
459
+  (0.3ms) SAVEPOINT active_record_1
460
+ Cmor::UserArea::User Exists (3.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "7ac6d4248876df5910e509b1ae1242e69e2db69287b9c1c4b62e229fbcd998b12291592c46507ce16944947f41adf3d7d75dfacb52818ab86c3042a57f7e601b"], ["LIMIT", 1]]
461
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "L0rlNN4J-ivm2olAoBc0"], ["LIMIT", 1]]
462
+ Cmor::UserArea::User Exists (0.5ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
463
+ Cmor::UserArea::User Create (0.4ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$AEU4K7voCOcOe6OoJtH8sO1JkiN81A0OXdMqCmYrG8f1ZI7FFTeyu"], ["password_salt", "CWepbxMb1P0vMS_daJQL"], ["persistence_token", "7ac6d4248876df5910e509b1ae1242e69e2db69287b9c1c4b62e229fbcd998b12291592c46507ce16944947f41adf3d7d75dfacb52818ab86c3042a57f7e601b"], ["single_access_token", "L0rlNN4J-ivm2olAoBc0"], ["perishable_token", "zR627BS91rwTbvDQpQzt"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 18:28:05.266588"], ["updated_at", "2019-03-25 18:28:05.266588"]]
464
+  (0.3ms) RELEASE SAVEPOINT active_record_1
465
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 19:28:05 +0100
466
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
467
+ Parameters: {"locale"=>"de"}
468
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
469
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (0.3ms)
470
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (15.4ms)
471
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (35.7ms)
472
+ Completed 200 OK in 59ms (Views: 57.3ms | ActiveRecord: 0.0ms)
473
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 19:28:05 +0100
474
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
475
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
476
+ Cmor::UserArea::User Load (1.9ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
477
+  (0.2ms) SAVEPOINT active_record_1
478
+ Cmor::UserArea::User Update (0.4ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "UsZ3WayAazkAscFeOuOd"], ["login_count", 1], ["last_request_at", "2019-03-25 18:28:05.451440"], ["current_login_at", "2019-03-25 18:28:05.451311"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 18:28:05.454540"], ["id", 1]]
479
+  (0.2ms) RELEASE SAVEPOINT active_record_1
480
+ Redirected to http://www.example.com/
481
+ Completed 302 Found in 83ms (ActiveRecord: 2.6ms)
482
+ Started GET "/" for 127.0.0.1 at 2019-03-25 19:28:05 +0100
483
+ Started GET "/de/benutzer/profil/edit" for 127.0.0.1 at 2019-03-25 19:28:05 +0100
484
+ Processing by Cmor::UserArea::CurrentUsersController#edit as HTML
485
+ Parameters: {"locale"=>"de"}
486
+ Cmor::UserArea::User Load (0.4ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
487
+  (0.1ms) SAVEPOINT active_record_1
488
+ Cmor::UserArea::User Update (0.3ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "yIL7f1YwCSCwiwyKdQtx"], ["last_request_at", "2019-03-25 18:28:05.475259"], ["updated_at", "2019-03-25 18:28:05.477238"], ["id", 1]]
489
+  (0.2ms) RELEASE SAVEPOINT active_record_1
490
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application
491
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form_errors.html.haml (0.1ms)
492
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form.html.haml (10.1ms)
493
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application (16.2ms)
494
+ Completed 200 OK in 31ms (Views: 19.9ms | ActiveRecord: 1.0ms)
495
+  (0.3ms) rollback transaction
496
+  (0.1ms) begin transaction
497
+  (0.3ms) SAVEPOINT active_record_1
498
+ Cmor::UserArea::User Exists (8.0ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "f9c820d7d86a6bf02e136f9be1eae99563309d79b85d0b36c8151c97f0d80f2bed68bd9f69ce51659f189dc6f0b5b225de892ae8dd32181b36eee4c06a29ca67"], ["LIMIT", 1]]
499
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "3SKUW6zj2blcpRuBvht3"], ["LIMIT", 1]]
500
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
501
+ Cmor::UserArea::User Create (1.4ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$qQwV3oCWRUWbiRQYYVdSKe0rU1G9cKFUmxJasAWP8mX2XsLvMqHgi"], ["password_salt", "anOHTjy8TmPmNuXV70oe"], ["persistence_token", "f9c820d7d86a6bf02e136f9be1eae99563309d79b85d0b36c8151c97f0d80f2bed68bd9f69ce51659f189dc6f0b5b225de892ae8dd32181b36eee4c06a29ca67"], ["single_access_token", "3SKUW6zj2blcpRuBvht3"], ["perishable_token", "p6P4-OlkQ2zoRsxn4Lgd"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 18:28:05.585624"], ["updated_at", "2019-03-25 18:28:05.585624"]]
502
+  (0.1ms) RELEASE SAVEPOINT active_record_1
503
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 19:28:05 +0100
504
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
505
+ Parameters: {"locale"=>"de"}
506
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
507
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (0.3ms)
508
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (11.4ms)
509
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (20.9ms)
510
+ Completed 200 OK in 37ms (Views: 35.0ms | ActiveRecord: 0.0ms)
511
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 19:28:05 +0100
512
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
513
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
514
+ Cmor::UserArea::User Load (0.4ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
515
+  (0.1ms) SAVEPOINT active_record_1
516
+ Cmor::UserArea::User Update (0.3ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "kyoyuDBHYdiDYW4NAcG6"], ["login_count", 1], ["last_request_at", "2019-03-25 18:28:05.727114"], ["current_login_at", "2019-03-25 18:28:05.726991"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 18:28:05.728643"], ["id", 1]]
517
+  (0.1ms) RELEASE SAVEPOINT active_record_1
518
+ Redirected to http://www.example.com/
519
+ Completed 302 Found in 64ms (ActiveRecord: 1.0ms)
520
+ Started GET "/" for 127.0.0.1 at 2019-03-25 19:28:05 +0100
521
+ Started GET "/de/benutzer/profil/edit" for 127.0.0.1 at 2019-03-25 19:28:05 +0100
522
+ Processing by Cmor::UserArea::CurrentUsersController#edit as HTML
523
+ Parameters: {"locale"=>"de"}
524
+ Cmor::UserArea::User Load (0.4ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
525
+  (0.1ms) SAVEPOINT active_record_1
526
+ Cmor::UserArea::User Update (0.2ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "sWWQ8OKhrpGvIEFcTqpZ"], ["last_request_at", "2019-03-25 18:28:05.739559"], ["updated_at", "2019-03-25 18:28:05.740581"], ["id", 1]]
527
+  (0.1ms) RELEASE SAVEPOINT active_record_1
528
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application
529
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form_errors.html.haml (0.1ms)
530
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form.html.haml (5.2ms)
531
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application (9.0ms)
532
+ Completed 200 OK in 18ms (Views: 11.4ms | ActiveRecord: 0.8ms)
533
+  (0.3ms) rollback transaction
534
+  (0.1ms) begin transaction
535
+ Started GET "/de/benutzer/profil/edit" for 127.0.0.1 at 2019-03-25 19:28:05 +0100
536
+ Processing by Cmor::UserArea::CurrentUsersController#edit as HTML
537
+ Parameters: {"locale"=>"de"}
538
+ Redirected to http://www.example.com/de/benutzer/session/new
539
+ Filter chain halted as :authenticate_user! rendered or redirected
540
+ Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
541
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 19:28:05 +0100
542
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
543
+ Parameters: {"locale"=>"de"}
544
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
545
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (0.1ms)
546
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (4.0ms)
547
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (8.9ms)
548
+ Completed 200 OK in 13ms (Views: 11.7ms | ActiveRecord: 0.0ms)
549
+  (0.1ms) rollback transaction
550
+  (0.1ms) begin transaction
551
+  (0.1ms) rollback transaction
552
+  (0.1ms) begin transaction
553
+  (0.2ms) rollback transaction
554
+  (0.1ms) begin transaction
555
+  (0.1ms) rollback transaction
556
+  (0.1ms) begin transaction
557
+ Cmor::UserArea::User Exists (0.5ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "28df1d5abeca74163ec0f4e1c4039c43fed7c2094badc3705ef5d56906ed34e8e7b4a510186ed3aa4122e9d85aa621f355803ee820118582fbf7a66ec4bf3c56"], ["LIMIT", 1]]
558
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "yTM25L9KVVx-NyQX7X9J"], ["LIMIT", 1]]
559
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user1@example.com"], ["LIMIT", 1]]
560
+  (0.1ms) rollback transaction
561
+  (0.1ms) begin transaction
562
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "5e6d67e80601034613929fec34ff495ce29b5060e90fb5e55707232d5ef250096a86877b5ea7c1223a69c09df57e631e92d505f9bbda1ea3ee318b87a268c047"], ["LIMIT", 1]]
563
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "_iVYJEojqVBXuzT9kSn_"], ["LIMIT", 1]]
564
+  (0.1ms) rollback transaction
565
+  (0.1ms) begin transaction
566
+  (0.4ms) SAVEPOINT active_record_1
567
+ Cmor::UserArea::User Exists (0.5ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "2d609640bb592a5b5111c9361281b9933ad8016389c48ec3be2f4f8ecb8d945ddb92e4b82a30d5fcc5cbc309aedb968774cb07c23651f125fbced9c8bda9e7a9"], ["LIMIT", 1]]
568
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "IrSV--8YFJZ23UsWn2Sw"], ["LIMIT", 1]]
569
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user2@example.com"], ["LIMIT", 1]]
570
+ Cmor::UserArea::User Create (0.5ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "user2@example.com"], ["crypted_password", "$2a$10$rUU2Bmz0jeqtVuUZO/i4a.7Xnyp1om6vOgyGtnWNoiMIhF/ndKStm"], ["password_salt", "576NkXwtWlYYglUHySgy"], ["persistence_token", "2d609640bb592a5b5111c9361281b9933ad8016389c48ec3be2f4f8ecb8d945ddb92e4b82a30d5fcc5cbc309aedb968774cb07c23651f125fbced9c8bda9e7a9"], ["single_access_token", "IrSV--8YFJZ23UsWn2Sw"], ["perishable_token", "raGPdNGoc0v8c6pSMm10"], ["created_at", "2019-03-25 18:28:05.941776"], ["updated_at", "2019-03-25 18:28:05.941776"]]
571
+  (0.1ms) RELEASE SAVEPOINT active_record_1
572
+  (0.7ms) rollback transaction
573
+  (0.1ms) begin transaction
574
+  (0.0ms) rollback transaction
575
+  (0.1ms) begin transaction
576
+  (0.1ms) rollback transaction
577
+  (0.2ms) begin transaction
578
+  (0.1ms) rollback transaction
579
+  (0.1ms) begin transaction
580
+  (0.1ms) rollback transaction
581
+  (0.1ms) begin transaction
582
+  (0.1ms) rollback transaction
583
+  (0.1ms) begin transaction
584
+  (0.1ms) rollback transaction
585
+  (0.8ms) begin transaction
586
+  (0.1ms) rollback transaction
587
+  (0.1ms) begin transaction
588
+  (0.1ms) rollback transaction
589
+  (0.1ms) begin transaction
590
+  (0.1ms) rollback transaction
591
+  (0.1ms) begin transaction
592
+  (0.2ms) rollback transaction
593
+  (0.1ms) begin transaction
594
+  (0.3ms) rollback transaction
595
+  (0.3ms) begin transaction
596
+  (0.1ms) rollback transaction
597
+  (0.2ms) begin transaction
598
+  (0.2ms) rollback transaction
599
+  (0.2ms) begin transaction
600
+  (0.2ms) rollback transaction
601
+  (0.1ms) begin transaction
602
+  (0.1ms) rollback transaction
603
+  (0.2ms) begin transaction
604
+  (0.2ms) rollback transaction
605
+  (0.1ms) begin transaction
606
+  (0.1ms) rollback transaction
607
+  (0.1ms) begin transaction
608
+  (0.1ms) rollback transaction
609
+  (0.2ms) begin transaction
610
+  (0.1ms) rollback transaction
611
+  (0.1ms) begin transaction
612
+  (0.1ms) rollback transaction
613
+  (0.1ms) begin transaction
614
+  (0.1ms) rollback transaction
615
+  (0.1ms) begin transaction
616
+  (0.1ms) rollback transaction
617
+  (0.1ms) begin transaction
618
+  (0.1ms) rollback transaction
619
+  (0.2ms) begin transaction
620
+  (0.1ms) rollback transaction
621
+  (0.1ms) begin transaction
622
+  (0.2ms) rollback transaction
623
+  (0.1ms) begin transaction
624
+  (0.1ms) rollback transaction
625
+  (0.4ms) begin transaction
626
+  (3.4ms) rollback transaction
627
+  (0.1ms) begin transaction
628
+  (0.1ms) rollback transaction
629
+  (0.2ms) begin transaction
630
+  (0.1ms) rollback transaction
631
+  (0.2ms) begin transaction
632
+  (0.1ms) rollback transaction
633
+  (0.1ms) begin transaction
634
+  (0.1ms) rollback transaction
635
+  (0.2ms) begin transaction
636
+  (0.1ms) rollback transaction
637
+  (0.1ms) begin transaction
638
+  (0.1ms) rollback transaction
639
+  (0.1ms) begin transaction
640
+  (0.1ms) rollback transaction
641
+  (0.1ms) begin transaction
642
+  (0.1ms) rollback transaction
643
+  (0.1ms) begin transaction
644
+  (0.1ms) rollback transaction
645
+  (1.7ms) begin transaction
646
+  (0.3ms) rollback transaction
647
+  (0.1ms) begin transaction
648
+  (0.1ms) rollback transaction
649
+  (0.2ms) begin transaction
650
+  (0.1ms) rollback transaction
651
+  (0.2ms) begin transaction
652
+  (0.1ms) rollback transaction
653
+  (0.1ms) begin transaction
654
+  (0.1ms) rollback transaction
655
+  (0.1ms) begin transaction
656
+  (0.2ms) rollback transaction
657
+  (0.2ms) begin transaction
658
+  (0.1ms) rollback transaction
659
+  (0.1ms) begin transaction
660
+  (0.1ms) rollback transaction
661
+  (0.1ms) begin transaction
662
+  (0.3ms) SAVEPOINT active_record_1
663
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "84f4651e4ee8ddf3b8a75041b2a34cc8f5b0ee35adc190b981ddad4094e06e4e0353972187758b2853c1fa8a782433d9829732d12493459ca055529507ab9278"], ["LIMIT", 1]]
664
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "0zT8RwNuRHTsp_eXVFj2"], ["LIMIT", 1]]
665
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user3@example.com"], ["LIMIT", 1]]
666
+ Cmor::UserArea::User Create (1.0ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "user3@example.com"], ["crypted_password", "$2a$10$ZNx4UxdEVuIorhOYDJ3rref6v8R5xizaS4qSUY/gDqd3yJAU2lJGW"], ["password_salt", "8RZrkpniO1otb3sG0Vmo"], ["persistence_token", "84f4651e4ee8ddf3b8a75041b2a34cc8f5b0ee35adc190b981ddad4094e06e4e0353972187758b2853c1fa8a782433d9829732d12493459ca055529507ab9278"], ["single_access_token", "0zT8RwNuRHTsp_eXVFj2"], ["perishable_token", "06NWcjw4OrnyU78377Dh"], ["created_at", "2019-03-25 18:28:06.152707"], ["updated_at", "2019-03-25 18:28:06.152707"]]
667
+  (0.2ms) RELEASE SAVEPOINT active_record_1
668
+  (0.5ms) rollback transaction
669
+  (0.1ms) begin transaction
670
+ Cmor::UserArea::User Exists (0.5ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "7b789e0802518f35f00a96471c25b361ca93b347de177421e8b3c3896a40755da1a775d72524ddbec870046cfcdc8cc1e80fc53cf7bb04f9f5038f74ac31b5b3"], ["LIMIT", 1]]
671
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "tAI5h1kBL2m4ZHmXUlAa"], ["LIMIT", 1]]
672
+  (0.2ms) rollback transaction
673
+  (0.1ms) begin transaction
674
+  (0.2ms) SAVEPOINT active_record_1
675
+ Cmor::UserArea::User Exists (0.4ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "0fa99cd7edae144398f9bb7d57236a5a09d9930370421606912c466a117dfd05c6746eaf19bff67f155434a3b39e8b3e268de490b829629ff2c53a36f062a200"], ["LIMIT", 1]]
676
+ Cmor::UserArea::User Exists (0.0ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "lyUb76mvxVnxL8zYRNIb"], ["LIMIT", 1]]
677
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user4@example.com"], ["LIMIT", 1]]
678
+ Cmor::UserArea::User Create (0.3ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "user4@example.com"], ["crypted_password", "$2a$10$vqWgs02Qu1fU5qINf0wI1.bqxBnSX9LVHDtdvtRhz8tRh/di3kySu"], ["password_salt", "p-VyWhhVy4ytvWtGavOC"], ["persistence_token", "0fa99cd7edae144398f9bb7d57236a5a09d9930370421606912c466a117dfd05c6746eaf19bff67f155434a3b39e8b3e268de490b829629ff2c53a36f062a200"], ["single_access_token", "lyUb76mvxVnxL8zYRNIb"], ["perishable_token", "goz8gg7LfuRFq41iXVq1"], ["created_at", "2019-03-25 18:28:06.239685"], ["updated_at", "2019-03-25 18:28:06.239685"]]
679
+  (0.1ms) RELEASE SAVEPOINT active_record_1
680
+  (0.1ms) SAVEPOINT active_record_1
681
+ Cmor::UserArea::User Update (0.2ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "9MYrW_Oglibk6YtedFJ0"], ["updated_at", "2019-03-25 18:28:06.243205"], ["id", 1]]
682
+  (0.1ms) RELEASE SAVEPOINT active_record_1
683
+  (0.2ms) rollback transaction
684
+  (0.1ms) begin transaction
685
+  (0.1ms) rollback transaction
686
+  (0.1ms) begin transaction
687
+  (0.2ms) SELECT COUNT(*) FROM "cmor_user_area_users"
688
+  (0.2ms) SAVEPOINT active_record_1
689
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "61476f9e2f72e779db9437bc26eb67238ee87d26a867b95426ca937a9cfa8bf7db106f7207bc9456b31cb50d92f516baff92bdd76b4178f3c2f34c63c2276239"], ["LIMIT", 1]]
690
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "W9lERzwQ4IIeMlcZGooS"], ["LIMIT", 1]]
691
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
692
+ Cmor::UserArea::User Create (0.4ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$bTULH60w.Kxciur6amqQe.EKtf5dYsOxFwJlgelys7LivGCotVmbC"], ["password_salt", "MTeDYgAEb_k6Yc75L7sr"], ["persistence_token", "61476f9e2f72e779db9437bc26eb67238ee87d26a867b95426ca937a9cfa8bf7db106f7207bc9456b31cb50d92f516baff92bdd76b4178f3c2f34c63c2276239"], ["single_access_token", "W9lERzwQ4IIeMlcZGooS"], ["perishable_token", "WV_Y5VPptOgDXXPNnG8O"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 18:28:06.327092"], ["updated_at", "2019-03-25 18:28:06.327092"]]
693
+  (0.1ms) RELEASE SAVEPOINT active_record_1
694
+  (0.1ms) SELECT COUNT(*) FROM "cmor_user_area_users"
695
+  (0.3ms) rollback transaction
696
+  (0.6ms) begin transaction
697
+  (0.3ms) SAVEPOINT active_record_1
698
+ Cmor::UserArea::User Exists (1.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "4610b41f17fbf1f2612dcf7f7dcdbb9fc6f25335130ae55fc7fdf6fab05cb45dd16e0d1ed3bd2544140894b860c4210f7d4db4b4b0b3d5fa46fd96f4f039a173"], ["LIMIT", 1]]
699
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "cClFHKkTjGLb7tosLxA4"], ["LIMIT", 1]]
700
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
701
+ Cmor::UserArea::User Create (0.8ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$a0yc.pLpmnDxbGdl4vhTVuJytbCpp93FXmg0UKjS67KCGYdyDIVjm"], ["password_salt", "CiDZPb5QyrZoCKzJ3gFE"], ["persistence_token", "4610b41f17fbf1f2612dcf7f7dcdbb9fc6f25335130ae55fc7fdf6fab05cb45dd16e0d1ed3bd2544140894b860c4210f7d4db4b4b0b3d5fa46fd96f4f039a173"], ["single_access_token", "cClFHKkTjGLb7tosLxA4"], ["perishable_token", "X1NfuX2XP1YcjQIltTtI"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 18:28:06.412511"], ["updated_at", "2019-03-25 18:28:06.412511"]]
702
+  (0.2ms) RELEASE SAVEPOINT active_record_1
703
+  (0.2ms) rollback transaction
704
+  (0.1ms) begin transaction
705
+  (0.4ms) SAVEPOINT active_record_1
706
+ Cmor::UserArea::User Exists (0.7ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "7278080f1f3ac82412d25c0f894bd12639c3b55fdc5a1f0b951448d7257ee736a540df50ff255f8dc1275eb24f05ea2f452c827fabc91ae9c1dd26f13f7564bd"], ["LIMIT", 1]]
707
+ Cmor::UserArea::User Exists (0.4ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "ePVnr8ZgDh3wxth93JvJ"], ["LIMIT", 1]]
708
+ Cmor::UserArea::User Exists (0.4ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
709
+ Cmor::UserArea::User Create (0.7ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$YHn0QPTjGe4v4umhZrKRTOo0SgjLAUzCYCDomXPcCcZgJG5BxvXPG"], ["password_salt", "-WbujYvNeZD8xcdigkOZ"], ["persistence_token", "7278080f1f3ac82412d25c0f894bd12639c3b55fdc5a1f0b951448d7257ee736a540df50ff255f8dc1275eb24f05ea2f452c827fabc91ae9c1dd26f13f7564bd"], ["single_access_token", "ePVnr8ZgDh3wxth93JvJ"], ["perishable_token", "6kJGRvKDZffRaC2JgNF2"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 18:28:06.495749"], ["updated_at", "2019-03-25 18:28:06.495749"]]
710
+  (0.2ms) RELEASE SAVEPOINT active_record_1
711
+  (0.2ms) rollback transaction
712
+  (0.1ms) begin transaction
713
+  (0.2ms) SAVEPOINT active_record_1
714
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "ae2d3ac9c3c50560f4ba6785511a22f61bc6b0ec505947cfad261cb4681909d4f3ca0668a79f3c21b8ff1a4671fb4f0553520bc3f1467203ce6b58ec1affe938"], ["LIMIT", 1]]
715
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "O3ICz9mqK-JLlh7_zyo-"], ["LIMIT", 1]]
716
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
717
+ Cmor::UserArea::User Create (0.2ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$Xe1sAMfVkOocS1GTz2cSe.yoUr/atdoEKEEW10eNl9AeFFKBb0cfG"], ["password_salt", "9dTL-1IkIOWy8srtreEn"], ["persistence_token", "ae2d3ac9c3c50560f4ba6785511a22f61bc6b0ec505947cfad261cb4681909d4f3ca0668a79f3c21b8ff1a4671fb4f0553520bc3f1467203ce6b58ec1affe938"], ["single_access_token", "O3ICz9mqK-JLlh7_zyo-"], ["perishable_token", "aMvFcDSSmLp3ow4ABdu5"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 18:28:06.567772"], ["updated_at", "2019-03-25 18:28:06.567772"]]
718
+  (0.1ms) RELEASE SAVEPOINT active_record_1
719
+  (5.9ms) rollback transaction
720
+  (0.1ms) begin transaction
721
+  (0.3ms) SAVEPOINT active_record_1
722
+ Cmor::UserArea::User Exists (0.7ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "bbe682055dd861e0981a3b0fb9e9defa6ba5ad19226207009a69c6b0c624886fc08070a612a1f777f3feff4e7f4bfec3a6f33926a4499d24887a761f14f2fa3a"], ["LIMIT", 1]]
723
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "9VcesPJDSZen6pb7DDGW"], ["LIMIT", 1]]
724
+ Cmor::UserArea::User Exists (0.4ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
725
+ Cmor::UserArea::User Create (2.5ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$q.Rzl8QVUAdyPO1.YUzv6eYr6cBg0wGIj9T5WRrJ.W3VqRIIew3Hm"], ["password_salt", "XcY3GTgYf4xLWPIKDTR_"], ["persistence_token", "bbe682055dd861e0981a3b0fb9e9defa6ba5ad19226207009a69c6b0c624886fc08070a612a1f777f3feff4e7f4bfec3a6f33926a4499d24887a761f14f2fa3a"], ["single_access_token", "9VcesPJDSZen6pb7DDGW"], ["perishable_token", "Cmn0eqtVyIE8UXKm7Aja"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 18:28:06.657213"], ["updated_at", "2019-03-25 18:28:06.657213"]]
726
+  (0.2ms) RELEASE SAVEPOINT active_record_1
727
+  (0.2ms) rollback transaction
728
+  (0.1ms) begin transaction
729
+  (0.6ms) SAVEPOINT active_record_1
730
+ Cmor::UserArea::User Exists (0.5ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "04277c0cc84befd01a2c8cfd23786cea873519918d72f4f8c24ffb27287fe6c248028921f5bebf29d9d46e298465f1957cefa9acf7077907c0b7d38d856dcb8e"], ["LIMIT", 1]]
731
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "zY1A7x8cerL8ovagAibW"], ["LIMIT", 1]]
732
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
733
+ Cmor::UserArea::User Create (0.5ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$1Z3C/nP3B0sU3.v0uFcjmuHWzRNRtSVbXazos2AykMkKTClBWTiKu"], ["password_salt", "wzkmmRGZ9zAfBkHknELh"], ["persistence_token", "04277c0cc84befd01a2c8cfd23786cea873519918d72f4f8c24ffb27287fe6c248028921f5bebf29d9d46e298465f1957cefa9acf7077907c0b7d38d856dcb8e"], ["single_access_token", "zY1A7x8cerL8ovagAibW"], ["perishable_token", "r7ANyYpBeSP8qqZ-L7ho"], ["created_at", "2019-03-25 18:28:06.735480"], ["updated_at", "2019-03-25 18:28:06.735480"]]
734
+  (0.2ms) RELEASE SAVEPOINT active_record_1
735
+  (0.2ms) SELECT COUNT(*) FROM "cmor_user_area_users"
736
+  (0.3ms) SAVEPOINT active_record_1
737
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "f725a7e472687695213f70f0cdcbe15daef7bff43fbcced9df0ce162f72732b9672773407d6a5d2cf3481470903f43f8b0fe7bc3ec6262aaa4e51bc513a5360c"], ["LIMIT", 1]]
738
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "ByKEs3aAzdxIlICf1EFf"], ["LIMIT", 1]]
739
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
740
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
741
+  (0.3ms) SELECT COUNT(*) FROM "cmor_user_area_users"
742
+  (0.2ms) rollback transaction
743
+  (0.0ms) begin transaction
744
+  (0.2ms) SAVEPOINT active_record_1
745
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "3cbeec8ab37e352525cb2a379a8c12f50cdbfa73b2ec27dac38f2e222a4e7e4c08d980a5f3f79337facac0df1f4f4744b08f8676a0d1a5eca09a19a6d12ab5b9"], ["LIMIT", 1]]
746
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "fnS2mIwfwy71zSHJlcPh"], ["LIMIT", 1]]
747
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
748
+ Cmor::UserArea::User Create (0.3ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$w1Y46BmDZMhi21dklIJdc.fmU5ZbFBuB.rENWT3p3uOvHPE2zpo4."], ["password_salt", "FMAgpUdTue2BuN3hB94b"], ["persistence_token", "3cbeec8ab37e352525cb2a379a8c12f50cdbfa73b2ec27dac38f2e222a4e7e4c08d980a5f3f79337facac0df1f4f4744b08f8676a0d1a5eca09a19a6d12ab5b9"], ["single_access_token", "fnS2mIwfwy71zSHJlcPh"], ["perishable_token", "incsN3iVF0objIOOXYuC"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 18:31:33.855884"], ["updated_at", "2019-03-25 18:31:33.855884"]]
749
+  (0.1ms) RELEASE SAVEPOINT active_record_1
750
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 19:31:33 +0100
751
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
752
+ Parameters: {"locale"=>"de"}
753
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
754
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (4.7ms)
755
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (14.2ms)
756
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (190.5ms)
757
+ Completed 200 OK in 733ms (Views: 731.9ms | ActiveRecord: 0.0ms)
758
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 19:31:34 +0100
759
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
760
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
761
+ Cmor::UserArea::User Load (0.4ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
762
+  (0.2ms) SAVEPOINT active_record_1
763
+ Cmor::UserArea::User Update (0.4ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "fxUxjKjlH_MpJ8et-Ilg"], ["login_count", 1], ["last_request_at", "2019-03-25 18:31:34.752832"], ["current_login_at", "2019-03-25 18:31:34.751822"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 18:31:34.768400"], ["id", 1]]
764
+  (0.1ms) RELEASE SAVEPOINT active_record_1
765
+ Redirected to http://www.example.com/
766
+ Completed 302 Found in 84ms (ActiveRecord: 1.1ms)
767
+ Started GET "/" for 127.0.0.1 at 2019-03-25 19:31:34 +0100
768
+  (0.3ms) rollback transaction
769
+  (0.1ms) begin transaction
770
+  (0.2ms) SAVEPOINT active_record_1
771
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "2466a488940c6e01bdec1d116ac3562bfc6d1ce64e7dd319466f831ae266079b49dca1c1213f41b5e2d840befa3818a8d89029cc0e0d75f73d007fb30bca31f1"], ["LIMIT", 1]]
772
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "qZdKPLsb9P7NjA51FFcC"], ["LIMIT", 1]]
773
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
774
+ Cmor::UserArea::User Create (0.4ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$OhFRUxIZuVxc629ppO1dE.SgZ7Si28WMvHOCUp4pg4M7/B/F5wYLC"], ["password_salt", "ioOyE9pWCX82d6LpSGe2"], ["persistence_token", "2466a488940c6e01bdec1d116ac3562bfc6d1ce64e7dd319466f831ae266079b49dca1c1213f41b5e2d840befa3818a8d89029cc0e0d75f73d007fb30bca31f1"], ["single_access_token", "qZdKPLsb9P7NjA51FFcC"], ["perishable_token", "ttvJL2BvyK_m-jWxIvnI"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 18:31:34.875664"], ["updated_at", "2019-03-25 18:31:34.875664"]]
775
+  (0.1ms) RELEASE SAVEPOINT active_record_1
776
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 19:31:34 +0100
777
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
778
+ Parameters: {"locale"=>"de"}
779
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
780
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (0.1ms)
781
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (23.1ms)
782
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (32.8ms)
783
+ Completed 200 OK in 42ms (Views: 41.3ms | ActiveRecord: 0.0ms)
784
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 19:31:34 +0100
785
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
786
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
787
+ Cmor::UserArea::User Load (0.7ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
788
+  (0.2ms) SAVEPOINT active_record_1
789
+ Cmor::UserArea::User Update (0.2ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "ZHSUQrtBv5HZKDO6h-fs"], ["login_count", 1], ["last_request_at", "2019-03-25 18:31:35.014924"], ["current_login_at", "2019-03-25 18:31:35.014757"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 18:31:35.017374"], ["id", 1]]
790
+  (0.1ms) RELEASE SAVEPOINT active_record_1
791
+ Redirected to http://www.example.com/
792
+ Completed 302 Found in 71ms (ActiveRecord: 1.2ms)
793
+ Started GET "/" for 127.0.0.1 at 2019-03-25 19:31:35 +0100
794
+  (0.4ms) rollback transaction
795
+  (0.0ms) begin transaction
796
+  (0.2ms) SAVEPOINT active_record_1
797
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "627303858a3846240fc1f60228fdc249f9ff446827e05a6d1e7f63de6e3cd954d57a4d2dd9d1b824c955191d02c5fa43a745a4c9f2ae16e81a46d967cdbae31d"], ["LIMIT", 1]]
798
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "U3olIrPbx9V0jtHgjVbL"], ["LIMIT", 1]]
799
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
800
+ Cmor::UserArea::User Create (0.5ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$zPKrEgb7KVVZFtkZWUuglut0nSZnkRwdSQ4rh11L38SeAUk8A/Qkm"], ["password_salt", "5euWxU0hxI7iNGBPkHqz"], ["persistence_token", "627303858a3846240fc1f60228fdc249f9ff446827e05a6d1e7f63de6e3cd954d57a4d2dd9d1b824c955191d02c5fa43a745a4c9f2ae16e81a46d967cdbae31d"], ["single_access_token", "U3olIrPbx9V0jtHgjVbL"], ["perishable_token", "YvuCslLAUnUrIPM2sFak"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 18:49:37.405906"], ["updated_at", "2019-03-25 18:49:37.405906"]]
801
+  (0.1ms) RELEASE SAVEPOINT active_record_1
802
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 19:49:37 +0100
803
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
804
+ Parameters: {"locale"=>"de"}
805
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
806
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (4.6ms)
807
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (15.5ms)
808
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (174.6ms)
809
+ Completed 500 Internal Server Error in 750ms (ActiveRecord: 0.0ms)
810
+  (0.2ms) rollback transaction
811
+  (0.1ms) begin transaction
812
+  (0.5ms) SAVEPOINT active_record_1
813
+ Cmor::UserArea::User Exists (1.0ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "6f9a824bd03a9097e9019e500f3461657bc15c00ed82ce2561f65a0979e74f7393c4873441bc530b82412904917fdac3e95f6c9618d3bd56333edce42644eddc"], ["LIMIT", 1]]
814
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "YysOSVW7AYensk25GgTK"], ["LIMIT", 1]]
815
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
816
+ Cmor::UserArea::User Create (0.6ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$VJBdWnZi5jGm/YIkKfl9hOWVtZfFMO8UlHRd0rwTlheWn73emaLl2"], ["password_salt", "7Jc9SG8cunjizGaBH56N"], ["persistence_token", "6f9a824bd03a9097e9019e500f3461657bc15c00ed82ce2561f65a0979e74f7393c4873441bc530b82412904917fdac3e95f6c9618d3bd56333edce42644eddc"], ["single_access_token", "YysOSVW7AYensk25GgTK"], ["perishable_token", "CCklJOyoSbh6hvtpd06D"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 18:49:38.327256"], ["updated_at", "2019-03-25 18:49:38.327256"]]
817
+  (0.2ms) RELEASE SAVEPOINT active_record_1
818
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 19:49:38 +0100
819
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
820
+ Parameters: {"locale"=>"de"}
821
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
822
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (0.1ms)
823
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (5.9ms)
824
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (12.2ms)
825
+ Completed 500 Internal Server Error in 73ms (ActiveRecord: 0.0ms)
826
+  (0.5ms) rollback transaction
827
+  (0.1ms) begin transaction
828
+  (0.1ms) SAVEPOINT active_record_1
829
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "ddd83cd87e0e9fbbd728c55158d8fac7e56af40d631b38f22133cdb45417c727e9fa93f59832800677f5bcf9a8a89dfcb9be6c7b252113a432c76db14d551b7c"], ["LIMIT", 1]]
830
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "8Um3BEeJKx7JDfgKtnne"], ["LIMIT", 1]]
831
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
832
+ Cmor::UserArea::User Create (0.4ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$EHS7mpFuq3VolOj9IS3oceAgnslAL4gwlIwABbCnYgq3ywXM4Z3vi"], ["password_salt", "tzdu_urxtNjU7MZsvuhi"], ["persistence_token", "ddd83cd87e0e9fbbd728c55158d8fac7e56af40d631b38f22133cdb45417c727e9fa93f59832800677f5bcf9a8a89dfcb9be6c7b252113a432c76db14d551b7c"], ["single_access_token", "8Um3BEeJKx7JDfgKtnne"], ["perishable_token", "Ls9DS7LWvKingkuF5_lD"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 18:50:52.519674"], ["updated_at", "2019-03-25 18:50:52.519674"]]
833
+  (0.1ms) RELEASE SAVEPOINT active_record_1
834
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 19:50:52 +0100
835
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
836
+ Parameters: {"locale"=>"de"}
837
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
838
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (4.1ms)
839
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (14.4ms)
840
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (185.3ms)
841
+  (0.1ms) begin transaction
842
+  (0.2ms) SAVEPOINT active_record_1
843
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "3b02393e875753c6e639d3991402871381f27e811996379674e207ca6d04345fe97eb30aceb7c50f9ab49bf49ea0d1f10827862c4de8962e045b8b4673d2818b"], ["LIMIT", 1]]
844
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "PekKzeMrhGEhSY3syt-r"], ["LIMIT", 1]]
845
+ Cmor::UserArea::User Exists (0.4ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
846
+ Cmor::UserArea::User Create (0.4ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$4wYDal3uch/GL7nCAInFAuN/54MEZT8qPwDZdjeIzlfuQviq0lm.G"], ["password_salt", "jYZubvkpYfyRz3QSAxmM"], ["persistence_token", "3b02393e875753c6e639d3991402871381f27e811996379674e207ca6d04345fe97eb30aceb7c50f9ab49bf49ea0d1f10827862c4de8962e045b8b4673d2818b"], ["single_access_token", "PekKzeMrhGEhSY3syt-r"], ["perishable_token", "FeNvtVJC2MJqO5xnQ_x3"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 18:53:45.267674"], ["updated_at", "2019-03-25 18:53:45.267674"]]
847
+  (0.3ms) RELEASE SAVEPOINT active_record_1
848
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 19:53:45 +0100
849
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
850
+ Parameters: {"locale"=>"de"}
851
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
852
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (8.0ms)
853
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (21.3ms)
854
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (227.1ms)
855
+ Completed 200 OK in 164426ms (Views: 164422.7ms | ActiveRecord: 0.0ms)
856
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 19:56:29 +0100
857
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
858
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
859
+ Cmor::UserArea::User Load (2.4ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
860
+  (0.1ms) SAVEPOINT active_record_1
861
+ Cmor::UserArea::User Update (0.3ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "wevR-fRpuYK1oGGBs43p"], ["login_count", 1], ["last_request_at", "2019-03-25 18:56:29.920430"], ["current_login_at", "2019-03-25 18:56:29.919748"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 18:56:29.922108"], ["id", 1]]
862
+  (0.1ms) RELEASE SAVEPOINT active_record_1
863
+ Redirected to http://www.example.com/
864
+ Completed 302 Found in 76ms (ActiveRecord: 3.0ms)
865
+ Started GET "/" for 127.0.0.1 at 2019-03-25 19:56:29 +0100
866
+  (0.2ms) rollback transaction
867
+  (0.0ms) begin transaction
868
+  (0.4ms) SAVEPOINT active_record_1
869
+ Cmor::UserArea::User Exists (0.4ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "53602a9219f73a48e37ee85f9973f2d7029278e136bc6f736a6a53da6828ada0f678815b88421ab30f1111ac6cfa50754ec61bb24466e4dbb923dae5c3bc9245"], ["LIMIT", 1]]
870
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "CR9v9kB41pcIAGWKqxoT"], ["LIMIT", 1]]
871
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
872
+ Cmor::UserArea::User Create (0.5ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$d.2YKbl7stgX8uQmaVNlYeeGyw3LFQ5lGGavjFHENDqXjdAa/8smC"], ["password_salt", "is79NtG0YRRkOynRmfeK"], ["persistence_token", "53602a9219f73a48e37ee85f9973f2d7029278e136bc6f736a6a53da6828ada0f678815b88421ab30f1111ac6cfa50754ec61bb24466e4dbb923dae5c3bc9245"], ["single_access_token", "CR9v9kB41pcIAGWKqxoT"], ["perishable_token", "3u_X7t6jgk8JneO2qmgk"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 18:56:30.015972"], ["updated_at", "2019-03-25 18:56:30.015972"]]
873
+  (0.1ms) RELEASE SAVEPOINT active_record_1
874
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 19:56:30 +0100
875
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
876
+ Parameters: {"locale"=>"de"}
877
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
878
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (0.1ms)
879
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (5.0ms)
880
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (14.0ms)
881
+ Completed 200 OK in 1487ms (Views: 1484.4ms | ActiveRecord: 0.0ms)
882
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 19:56:31 +0100
883
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
884
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
885
+ Cmor::UserArea::User Load (0.8ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
886
+  (0.2ms) SAVEPOINT active_record_1
887
+ Cmor::UserArea::User Update (0.6ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "Iecpvnt9hdZzGDD16-se"], ["login_count", 1], ["last_request_at", "2019-03-25 18:56:31.604168"], ["current_login_at", "2019-03-25 18:56:31.603973"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 18:56:31.605938"], ["id", 1]]
888
+  (0.1ms) RELEASE SAVEPOINT active_record_1
889
+ Redirected to http://www.example.com/
890
+ Completed 302 Found in 79ms (ActiveRecord: 1.7ms)
891
+ Started GET "/" for 127.0.0.1 at 2019-03-25 19:56:31 +0100
892
+  (1.8ms) rollback transaction
893
+  (0.1ms) begin transaction
894
+  (0.2ms) SAVEPOINT active_record_1
895
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "817ecc8ed3aa20b7f34c6fa3a23fc640a4d1f47a5d461bebd69d408f75ddf47d6a4c069915084452f6f6bdda460f67331d0cd3d9cb9e5ceadf81151aa8a07853"], ["LIMIT", 1]]
896
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "iIfz-icCfXT6fEvOU63w"], ["LIMIT", 1]]
897
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
898
+ Cmor::UserArea::User Create (0.5ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$4PbC2m4Z3WknviVh9oLem.9WIbdu487IOHElbxR0SVGom4Ke3mzo6"], ["password_salt", "VXiiOXBVrUmscLMK8CE3"], ["persistence_token", "817ecc8ed3aa20b7f34c6fa3a23fc640a4d1f47a5d461bebd69d408f75ddf47d6a4c069915084452f6f6bdda460f67331d0cd3d9cb9e5ceadf81151aa8a07853"], ["single_access_token", "iIfz-icCfXT6fEvOU63w"], ["perishable_token", "UxzytGlYzdc2mqOabbc0"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 18:56:57.353923"], ["updated_at", "2019-03-25 18:56:57.353923"]]
899
+  (0.1ms) RELEASE SAVEPOINT active_record_1
900
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 19:56:57 +0100
901
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
902
+ Parameters: {"locale"=>"de"}
903
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
904
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (5.6ms)
905
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (47.5ms)
906
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (237.2ms)
907
+ Completed 200 OK in 702ms (Views: 698.2ms | ActiveRecord: 0.0ms)
908
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 19:56:58 +0100
909
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
910
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
911
+ Cmor::UserArea::User Load (0.4ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
912
+  (0.2ms) SAVEPOINT active_record_1
913
+ Cmor::UserArea::User Update (0.4ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "wuhDtBja9kY67_sSK9Y4"], ["login_count", 1], ["last_request_at", "2019-03-25 18:56:58.262994"], ["current_login_at", "2019-03-25 18:56:58.261981"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 18:56:58.264729"], ["id", 1]]
914
+  (0.1ms) RELEASE SAVEPOINT active_record_1
915
+ Redirected to http://www.example.com/
916
+ Completed 302 Found in 72ms (ActiveRecord: 1.1ms)
917
+ Started GET "/" for 127.0.0.1 at 2019-03-25 19:56:58 +0100
918
+ Processing by HomeController#index as HTML
919
+ Rendering home/index.html.erb within layouts/application
920
+ Rendered home/index.html.erb within layouts/application (0.6ms)
921
+ Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.0ms)
922
+  (0.2ms) rollback transaction
923
+  (0.1ms) begin transaction
924
+  (0.2ms) SAVEPOINT active_record_1
925
+ Cmor::UserArea::User Exists (0.4ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "0ae6e2e973df3620610c07d54439fe13c2f53759df4873c19c71fea5258819ca7ebe79802a47be466fd9b59675509187b0b26bfb00ceda5671e26c98012b520b"], ["LIMIT", 1]]
926
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "knS1CWsxvSUECxeCtx8F"], ["LIMIT", 1]]
927
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
928
+ Cmor::UserArea::User Create (0.8ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$4kUkLYcigqmMkg6AZxh1lO/FurOIVtQ3IcV4iaRxj99QOIPvH8cGq"], ["password_salt", "zoMX7bpZUmJ4ITN1EG3c"], ["persistence_token", "0ae6e2e973df3620610c07d54439fe13c2f53759df4873c19c71fea5258819ca7ebe79802a47be466fd9b59675509187b0b26bfb00ceda5671e26c98012b520b"], ["single_access_token", "knS1CWsxvSUECxeCtx8F"], ["perishable_token", "ljDIrJU8_EceG9p06xqM"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 18:56:58.379291"], ["updated_at", "2019-03-25 18:56:58.379291"]]
929
+  (0.2ms) RELEASE SAVEPOINT active_record_1
930
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 19:56:58 +0100
931
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
932
+ Parameters: {"locale"=>"de"}
933
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
934
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (0.1ms)
935
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (7.7ms)
936
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (28.0ms)
937
+ Completed 200 OK in 36ms (Views: 34.6ms | ActiveRecord: 0.0ms)
938
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 19:56:58 +0100
939
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
940
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
941
+ Cmor::UserArea::User Load (0.5ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
942
+  (0.4ms) SAVEPOINT active_record_1
943
+ Cmor::UserArea::User Update (0.4ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "uJSpRJN2xD6mqcGQYcAT"], ["login_count", 1], ["last_request_at", "2019-03-25 18:56:58.512177"], ["current_login_at", "2019-03-25 18:56:58.511747"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 18:56:58.514456"], ["id", 1]]
944
+  (0.1ms) RELEASE SAVEPOINT active_record_1
945
+ Redirected to http://www.example.com/
946
+ Completed 302 Found in 68ms (ActiveRecord: 1.4ms)
947
+ Started GET "/" for 127.0.0.1 at 2019-03-25 19:56:58 +0100
948
+ Processing by HomeController#index as HTML
949
+ Rendering home/index.html.erb within layouts/application
950
+ Rendered home/index.html.erb within layouts/application (0.1ms)
951
+ Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms)
952
+  (0.3ms) rollback transaction
953
+  (0.1ms) begin transaction
954
+  (0.2ms) SAVEPOINT active_record_1
955
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "18c985141b384e54e3dbe0c7225f9af4a1a666086e69d93a2bf6992788be12a1d08159894f29b0b25e21459d22b2d44a3b0f630c119cfb07faf3d73a75c83e77"], ["LIMIT", 1]]
956
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "PNcMy1SK5Go97fdLUCsI"], ["LIMIT", 1]]
957
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
958
+ Cmor::UserArea::User Create (0.4ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$TAeV34GkvZ8BfrpCuACAt.PdMj8yjsMnBVnt8s0e6np8BoFD0vxFe"], ["password_salt", "E34_yQrTMX3RNaqwkwZG"], ["persistence_token", "18c985141b384e54e3dbe0c7225f9af4a1a666086e69d93a2bf6992788be12a1d08159894f29b0b25e21459d22b2d44a3b0f630c119cfb07faf3d73a75c83e77"], ["single_access_token", "PNcMy1SK5Go97fdLUCsI"], ["perishable_token", "ufnT0XMqSiN8spuPRg5y"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 18:57:37.602652"], ["updated_at", "2019-03-25 18:57:37.602652"]]
959
+  (0.1ms) RELEASE SAVEPOINT active_record_1
960
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 19:57:37 +0100
961
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
962
+ Parameters: {"locale"=>"de"}
963
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
964
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (5.0ms)
965
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (45.4ms)
966
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (204.2ms)
967
+ Completed 200 OK in 641ms (Views: 639.0ms | ActiveRecord: 0.0ms)
968
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 19:57:38 +0100
969
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
970
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
971
+ Cmor::UserArea::User Load (0.5ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
972
+  (0.2ms) SAVEPOINT active_record_1
973
+ Cmor::UserArea::User Update (0.4ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "kl4exbWJnXpC3d0Z1LPL"], ["login_count", 1], ["last_request_at", "2019-03-25 18:57:38.410834"], ["current_login_at", "2019-03-25 18:57:38.409857"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 18:57:38.412583"], ["id", 1]]
974
+  (0.1ms) RELEASE SAVEPOINT active_record_1
975
+ Redirected to http://www.example.com/
976
+ Completed 302 Found in 74ms (ActiveRecord: 1.2ms)
977
+ Started GET "/" for 127.0.0.1 at 2019-03-25 19:57:38 +0100
978
+ Processing by HomeController#index as HTML
979
+ Rendering home/index.html.erb within layouts/application
980
+ Rendered home/index.html.erb within layouts/application (0.7ms)
981
+ Completed 200 OK in 11ms (Views: 9.7ms | ActiveRecord: 0.0ms)
982
+  (0.3ms) rollback transaction
983
+  (0.1ms) begin transaction
984
+  (0.1ms) SAVEPOINT active_record_1
985
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "728b80277263e2d220677094fb0e7ad427249fa7df872f97928c7e5a192cf3da37d2a709e40c88d5d987e91802aa76ed5fb28dfa70d13dfbfdb15aa0fa151ba5"], ["LIMIT", 1]]
986
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "3hkVw-BLQNAcCG12BJ5l"], ["LIMIT", 1]]
987
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
988
+ Cmor::UserArea::User Create (0.3ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$TTy.tWCUAMIV5zmDLZ2zw.zCjdPw792AlIOgXhwGLaAh0BY7pgBbS"], ["password_salt", "h6TfBqDuNipWWWBZxEf-"], ["persistence_token", "728b80277263e2d220677094fb0e7ad427249fa7df872f97928c7e5a192cf3da37d2a709e40c88d5d987e91802aa76ed5fb28dfa70d13dfbfdb15aa0fa151ba5"], ["single_access_token", "3hkVw-BLQNAcCG12BJ5l"], ["perishable_token", "RUXGw9Vf7hLqaOoQG1-C"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 18:57:38.512139"], ["updated_at", "2019-03-25 18:57:38.512139"]]
989
+  (0.1ms) RELEASE SAVEPOINT active_record_1
990
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 19:57:38 +0100
991
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
992
+ Parameters: {"locale"=>"de"}
993
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
994
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (0.1ms)
995
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (3.8ms)
996
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (9.9ms)
997
+ Completed 200 OK in 19ms (Views: 17.7ms | ActiveRecord: 0.0ms)
998
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 19:57:38 +0100
999
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
1000
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
1001
+ Cmor::UserArea::User Load (0.6ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
1002
+  (0.1ms) SAVEPOINT active_record_1
1003
+ Cmor::UserArea::User Update (0.4ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "Pu2fxd4kmRghawP1OGZA"], ["login_count", 1], ["last_request_at", "2019-03-25 18:57:38.612860"], ["current_login_at", "2019-03-25 18:57:38.612725"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 18:57:38.614554"], ["id", 1]]
1004
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1005
+ Redirected to http://www.example.com/
1006
+ Completed 302 Found in 66ms (ActiveRecord: 1.3ms)
1007
+ Started GET "/" for 127.0.0.1 at 2019-03-25 19:57:38 +0100
1008
+ Processing by HomeController#index as HTML
1009
+ Rendering home/index.html.erb within layouts/application
1010
+ Rendered home/index.html.erb within layouts/application (0.1ms)
1011
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
1012
+  (0.4ms) rollback transaction
1013
+  (0.1ms) begin transaction
1014
+  (0.2ms) SAVEPOINT active_record_1
1015
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "47f7f275ffee5148323ec2f4714bfa89279b0a606b9cbe970e8b2fd23f505be7eb50499a78213d885b749c5bb9431e78ab889ebe67026757daa80236ae271132"], ["LIMIT", 1]]
1016
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "UJ274pZQU4xaaZE45MqS"], ["LIMIT", 1]]
1017
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
1018
+ Cmor::UserArea::User Create (0.4ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$UAC1LQrIkJTxaRC3rViBxuy691Y5xsvCym.elTc4kxZmezYPZgrWS"], ["password_salt", "zu6basrvLIYIRXX8lA7g"], ["persistence_token", "47f7f275ffee5148323ec2f4714bfa89279b0a606b9cbe970e8b2fd23f505be7eb50499a78213d885b749c5bb9431e78ab889ebe67026757daa80236ae271132"], ["single_access_token", "UJ274pZQU4xaaZE45MqS"], ["perishable_token", "LI4hJXcToeFjBgomRCAu"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 19:02:49.238884"], ["updated_at", "2019-03-25 19:02:49.238884"]]
1019
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1020
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 20:02:49 +0100
1021
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
1022
+ Parameters: {"locale"=>"de"}
1023
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
1024
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (3.2ms)
1025
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (15.7ms)
1026
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (200.0ms)
1027
+ Completed 500 Internal Server Error in 791ms (ActiveRecord: 0.0ms)
1028
+  (0.2ms) rollback transaction
1029
+  (0.2ms) begin transaction
1030
+  (0.3ms) SAVEPOINT active_record_1
1031
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "0546360cd387e1d5545c2f0a8fada27f56f7315e908873e1d92479c00a5ac80a1d8658765d0e98793cf742393696c9796665dcb74feca378182a34433e64cbbe"], ["LIMIT", 1]]
1032
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "FrkJ6plrfbzxBIw3muYt"], ["LIMIT", 1]]
1033
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
1034
+ Cmor::UserArea::User Create (0.3ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$I7ORFskD8emdeqVjOXdioOepVv/4dbmUtn0eguwrNBCC9J4c5dzYS"], ["password_salt", "gOJ184C94mJhgVaGCS1n"], ["persistence_token", "0546360cd387e1d5545c2f0a8fada27f56f7315e908873e1d92479c00a5ac80a1d8658765d0e98793cf742393696c9796665dcb74feca378182a34433e64cbbe"], ["single_access_token", "FrkJ6plrfbzxBIw3muYt"], ["perishable_token", "v3ZI_fM4COQBwnfaeMgy"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 19:02:50.199328"], ["updated_at", "2019-03-25 19:02:50.199328"]]
1035
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1036
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 20:02:50 +0100
1037
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
1038
+ Parameters: {"locale"=>"de"}
1039
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
1040
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (0.2ms)
1041
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (6.9ms)
1042
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (17.1ms)
1043
+ Completed 500 Internal Server Error in 77ms (ActiveRecord: 0.0ms)
1044
+  (0.6ms) rollback transaction
1045
+  (0.1ms) begin transaction
1046
+  (0.2ms) SAVEPOINT active_record_1
1047
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "c731d944393ecf2a629d641f21ddd0fdd4f46082a3ca965d198cf43ff32012fe2350c57cfaad2fbd8e82966ff7b2a84ae741f633605d3a447ce43f9cf086b8dd"], ["LIMIT", 1]]
1048
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "RzGR7IkAIVgamboPwfp8"], ["LIMIT", 1]]
1049
+ Cmor::UserArea::User Exists (0.4ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
1050
+ Cmor::UserArea::User Create (2.0ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$sIdGkauDzhGyI2T/ZY7uhepdv/OjQlQis4IpyjDz1b6/N21MLPTCq"], ["password_salt", "jNn63orGpLRDXLkriu8u"], ["persistence_token", "c731d944393ecf2a629d641f21ddd0fdd4f46082a3ca965d198cf43ff32012fe2350c57cfaad2fbd8e82966ff7b2a84ae741f633605d3a447ce43f9cf086b8dd"], ["single_access_token", "RzGR7IkAIVgamboPwfp8"], ["perishable_token", "28VSJi4YmbggYX7BmA5S"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 19:03:21.974288"], ["updated_at", "2019-03-25 19:03:21.974288"]]
1051
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1052
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 20:03:21 +0100
1053
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
1054
+ Parameters: {"locale"=>"de"}
1055
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
1056
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (3.9ms)
1057
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (40.8ms)
1058
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (194.9ms)
1059
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (26.1ms)
1060
+ Completed 200 OK in 770ms (Views: 767.7ms | ActiveRecord: 0.0ms)
1061
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 20:03:22 +0100
1062
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
1063
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
1064
+ Cmor::UserArea::User Load (0.4ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
1065
+  (0.2ms) SAVEPOINT active_record_1
1066
+ Cmor::UserArea::User Update (0.3ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "v6iAU_30HzkPBCYmP7uN"], ["login_count", 1], ["last_request_at", "2019-03-25 19:03:22.932625"], ["current_login_at", "2019-03-25 19:03:22.931635"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 19:03:22.934607"], ["id", 1]]
1067
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1068
+ Redirected to http://www.example.com/
1069
+ Completed 302 Found in 79ms (ActiveRecord: 1.0ms)
1070
+ Started GET "/" for 127.0.0.1 at 2019-03-25 20:03:22 +0100
1071
+ Processing by HomeController#index as HTML
1072
+ Rendering home/index.html.erb within layouts/application
1073
+ Rendered home/index.html.erb within layouts/application (0.6ms)
1074
+ Cmor::UserArea::User Load (0.4ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1075
+  (0.1ms) SAVEPOINT active_record_1
1076
+ Cmor::UserArea::User Update (0.2ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "9b4VL_nZhiymIec4BhdZ"], ["last_request_at", "2019-03-25 19:03:22.971892"], ["updated_at", "2019-03-25 19:03:22.973384"], ["id", 1]]
1077
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1078
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (9.2ms)
1079
+ Completed 200 OK in 23ms (Views: 19.8ms | ActiveRecord: 0.8ms)
1080
+  (0.3ms) rollback transaction
1081
+  (0.2ms) begin transaction
1082
+  (0.2ms) SAVEPOINT active_record_1
1083
+ Cmor::UserArea::User Exists (1.7ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "bac9fc9f764d97590a74b7e4b75ab527d25008c34a38a4db34da8125ddb53d558fbc3bf85561344ddd67d0fd2b4ee4e165bfa7a209a389212e848d4f2113d6ef"], ["LIMIT", 1]]
1084
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "JJrfmdBOWNMo2LDLciXV"], ["LIMIT", 1]]
1085
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
1086
+ Cmor::UserArea::User Create (0.7ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$jAwhoFknMwbnAPpUSxvlMOsJ8aAsR9Or5GGNGiuAO2eWspkAyBP0C"], ["password_salt", "nLQ7GzX97V1H-ItHZfff"], ["persistence_token", "bac9fc9f764d97590a74b7e4b75ab527d25008c34a38a4db34da8125ddb53d558fbc3bf85561344ddd67d0fd2b4ee4e165bfa7a209a389212e848d4f2113d6ef"], ["single_access_token", "JJrfmdBOWNMo2LDLciXV"], ["perishable_token", "yKxplmUFsM57QeGwWaxq"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 19:03:23.070773"], ["updated_at", "2019-03-25 19:03:23.070773"]]
1087
+  (0.3ms) RELEASE SAVEPOINT active_record_1
1088
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 20:03:23 +0100
1089
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
1090
+ Parameters: {"locale"=>"de"}
1091
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
1092
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (0.2ms)
1093
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (13.5ms)
1094
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (29.7ms)
1095
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (4.7ms)
1096
+ Completed 200 OK in 73ms (Views: 72.3ms | ActiveRecord: 0.0ms)
1097
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 20:03:23 +0100
1098
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
1099
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
1100
+ Cmor::UserArea::User Load (1.8ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
1101
+  (0.3ms) SAVEPOINT active_record_1
1102
+ Cmor::UserArea::User Update (0.6ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "hHOnDkPmwCOk7PbvKJ4M"], ["login_count", 1], ["last_request_at", "2019-03-25 19:03:23.259751"], ["current_login_at", "2019-03-25 19:03:23.256125"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 19:03:23.265952"], ["id", 1]]
1103
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1104
+ Redirected to http://www.example.com/
1105
+ Completed 302 Found in 89ms (ActiveRecord: 2.8ms)
1106
+ Started GET "/" for 127.0.0.1 at 2019-03-25 20:03:23 +0100
1107
+ Processing by HomeController#index as HTML
1108
+ Rendering home/index.html.erb within layouts/application
1109
+ Rendered home/index.html.erb within layouts/application (0.1ms)
1110
+ Cmor::UserArea::User Load (0.6ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1111
+  (0.3ms) SAVEPOINT active_record_1
1112
+ Cmor::UserArea::User Update (0.4ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "8FS7pw9NhlD0yo_ZZ429"], ["last_request_at", "2019-03-25 19:03:23.305266"], ["updated_at", "2019-03-25 19:03:23.308040"], ["id", 1]]
1113
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1114
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (21.5ms)
1115
+ Completed 200 OK in 30ms (Views: 28.0ms | ActiveRecord: 1.4ms)
1116
+ Started DELETE "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 20:03:23 +0100
1117
+ Processing by Cmor::UserArea::UserSessionsController#destroy as HTML
1118
+ Parameters: {"locale"=>"de"}
1119
+ Cmor::UserArea::User Load (0.4ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1120
+  (0.2ms) SAVEPOINT active_record_1
1121
+ Cmor::UserArea::User Update (0.2ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "Oq6_8DmKBnryN_2tGVwU"], ["last_request_at", "2019-03-25 19:03:23.337052"], ["updated_at", "2019-03-25 19:03:23.338306"], ["id", 1]]
1122
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1123
+ [LocationHistoryConcern] Storing last location [http://www.example.com/]
1124
+ Cmor::UserArea::User Load (0.4ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1125
+  (0.2ms) SAVEPOINT active_record_1
1126
+ Cmor::UserArea::User Update (0.3ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "MYEDOlxTLbOhG8899BH1"], ["last_request_at", "2019-03-25 19:03:23.348382"], ["updated_at", "2019-03-25 19:03:23.349539"], ["id", 1]]
1127
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1128
+ Redirected to http://www.example.com/de
1129
+ Completed 302 Found in 23ms (ActiveRecord: 1.9ms)
1130
+ Started GET "/de" for 127.0.0.1 at 2019-03-25 20:03:23 +0100
1131
+  (0.3ms) rollback transaction
1132
+  (0.1ms) begin transaction
1133
+  (0.1ms) SAVEPOINT active_record_1
1134
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "9e3bcd408bce339071f5c729e4a3ecf15e9cbcf24240f59ceeaab973e34e335e5425814d936776ecb166c4ca17df826f9bebe0f30ce1c4936537d9eea66c18eb"], ["LIMIT", 1]]
1135
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "a149fZ_7iUW0nngfU5yo"], ["LIMIT", 1]]
1136
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
1137
+ Cmor::UserArea::User Create (0.4ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$mMwbN.tZ3Jq.hs4IGdpj0O5478g.pz3PX8qID3T1tXgwj96qooFD6"], ["password_salt", "GATeAAGDHqBYgnl3SGr7"], ["persistence_token", "9e3bcd408bce339071f5c729e4a3ecf15e9cbcf24240f59ceeaab973e34e335e5425814d936776ecb166c4ca17df826f9bebe0f30ce1c4936537d9eea66c18eb"], ["single_access_token", "a149fZ_7iUW0nngfU5yo"], ["perishable_token", "YZ0FWid-eZmprbVOoyf1"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 19:06:17.597503"], ["updated_at", "2019-03-25 19:06:17.597503"]]
1138
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1139
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 20:06:17 +0100
1140
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
1141
+ Parameters: {"locale"=>"de"}
1142
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
1143
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (5.2ms)
1144
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (71.3ms)
1145
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (241.3ms)
1146
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (21.7ms)
1147
+ Completed 200 OK in 700ms (Views: 698.2ms | ActiveRecord: 0.0ms)
1148
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 20:06:18 +0100
1149
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
1150
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
1151
+ Cmor::UserArea::User Load (0.5ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
1152
+  (0.2ms) SAVEPOINT active_record_1
1153
+ Cmor::UserArea::User Update (0.4ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "DM5ouF9JsGvqIQKynf5t"], ["login_count", 1], ["last_request_at", "2019-03-25 19:06:18.500385"], ["current_login_at", "2019-03-25 19:06:18.499488"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 19:06:18.502195"], ["id", 1]]
1154
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1155
+ Redirected to http://www.example.com/
1156
+ Completed 302 Found in 77ms (ActiveRecord: 1.1ms)
1157
+ Started GET "/" for 127.0.0.1 at 2019-03-25 20:06:18 +0100
1158
+ Processing by HomeController#index as HTML
1159
+ Rendering home/index.html.erb within layouts/application
1160
+ Rendered home/index.html.erb within layouts/application (0.5ms)
1161
+ Cmor::UserArea::User Load (0.3ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1162
+  (0.1ms) SAVEPOINT active_record_1
1163
+ Cmor::UserArea::User Update (0.2ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "Sf0boE7HnPPn8yU-9fiu"], ["last_request_at", "2019-03-25 19:06:18.535348"], ["updated_at", "2019-03-25 19:06:18.536443"], ["id", 1]]
1164
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1165
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (8.6ms)
1166
+ Completed 200 OK in 19ms (Views: 16.9ms | ActiveRecord: 0.7ms)
1167
+  (0.2ms) rollback transaction
1168
+  (0.1ms) begin transaction
1169
+  (0.3ms) SAVEPOINT active_record_1
1170
+ Cmor::UserArea::User Exists (0.4ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "3f516a65ed2d45c0dac6ed707a42d4ec04d3079c755bb756995ee7220995db3be45796c7977db284daec494d9cca56284c88de7e2d9cd9a577530b899be7ea74"], ["LIMIT", 1]]
1171
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "k-MoxLcmYHwe-zIe7MuN"], ["LIMIT", 1]]
1172
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
1173
+ Cmor::UserArea::User Create (0.4ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$alY.3nqHwRfr3Kj19/wMnOvMv6LRZ6IUBDuMSR1SlZaHaxCbdwyoq"], ["password_salt", "Kx43moiPhKRywqujHeRq"], ["persistence_token", "3f516a65ed2d45c0dac6ed707a42d4ec04d3079c755bb756995ee7220995db3be45796c7977db284daec494d9cca56284c88de7e2d9cd9a577530b899be7ea74"], ["single_access_token", "k-MoxLcmYHwe-zIe7MuN"], ["perishable_token", "Zf3GScyixkJcQGK5USw-"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 19:06:18.621927"], ["updated_at", "2019-03-25 19:06:18.621927"]]
1174
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1175
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 20:06:18 +0100
1176
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
1177
+ Parameters: {"locale"=>"de"}
1178
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
1179
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (0.1ms)
1180
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (11.0ms)
1181
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (17.2ms)
1182
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (9.4ms)
1183
+ Completed 200 OK in 33ms (Views: 31.8ms | ActiveRecord: 0.0ms)
1184
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 20:06:18 +0100
1185
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
1186
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
1187
+ Cmor::UserArea::User Load (0.5ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
1188
+  (0.2ms) SAVEPOINT active_record_1
1189
+ Cmor::UserArea::User Update (0.5ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "jaohU-vON43Pj1fnky9D"], ["login_count", 1], ["last_request_at", "2019-03-25 19:06:18.747390"], ["current_login_at", "2019-03-25 19:06:18.747144"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 19:06:18.749110"], ["id", 1]]
1190
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1191
+ Redirected to http://www.example.com/
1192
+ Completed 302 Found in 69ms (ActiveRecord: 1.3ms)
1193
+ Started GET "/" for 127.0.0.1 at 2019-03-25 20:06:18 +0100
1194
+ Processing by HomeController#index as HTML
1195
+ Rendering home/index.html.erb within layouts/application
1196
+ Rendered home/index.html.erb within layouts/application (0.1ms)
1197
+ Cmor::UserArea::User Load (0.2ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1198
+  (0.1ms) SAVEPOINT active_record_1
1199
+ Cmor::UserArea::User Update (0.2ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "wIHYC7gaaxm82OWptQYR"], ["last_request_at", "2019-03-25 19:06:18.763378"], ["updated_at", "2019-03-25 19:06:18.764319"], ["id", 1]]
1200
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1201
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (6.7ms)
1202
+ Completed 200 OK in 10ms (Views: 8.9ms | ActiveRecord: 0.6ms)
1203
+ Started DELETE "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 20:06:18 +0100
1204
+ Processing by Cmor::UserArea::UserSessionsController#destroy as HTML
1205
+ Parameters: {"locale"=>"de"}
1206
+ Cmor::UserArea::User Load (0.3ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1207
+  (0.1ms) SAVEPOINT active_record_1
1208
+ Cmor::UserArea::User Update (0.2ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "fD811tY_SqZyIWEoTRdu"], ["last_request_at", "2019-03-25 19:06:18.775917"], ["updated_at", "2019-03-25 19:06:18.776844"], ["id", 1]]
1209
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1210
+ [LocationHistoryConcern] Storing last location [http://www.example.com/]
1211
+ Cmor::UserArea::User Load (0.4ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1212
+  (0.1ms) SAVEPOINT active_record_1
1213
+ Cmor::UserArea::User Update (0.2ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "0yZhJ-EpP1kY_PhM-xCG"], ["last_request_at", "2019-03-25 19:06:18.781027"], ["updated_at", "2019-03-25 19:06:18.781848"], ["id", 1]]
1214
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1215
+ Redirected to http://www.example.com/de
1216
+ Completed 302 Found in 12ms (ActiveRecord: 1.5ms)
1217
+ Started GET "/de" for 127.0.0.1 at 2019-03-25 20:06:18 +0100
1218
+  (1.9ms) rollback transaction
1219
+  (0.1ms) begin transaction
1220
+  (0.3ms) SAVEPOINT active_record_1
1221
+ Cmor::UserArea::User Exists (0.4ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "8b326f1737ee505383a44c8f045224190345b42acdd11660329aae79fb0695be7eee80c13db78a4ac3a2c87c238899c75344b6fd701506488d1d20aab2cf1d30"], ["LIMIT", 1]]
1222
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "i6wHwZ7f6eRCC9cyT4iy"], ["LIMIT", 1]]
1223
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
1224
+ Cmor::UserArea::User Create (0.5ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$887.327d3LUsfqYXPfJOW.DskQvNu0szJKIgAc3G/5OsBsr8J6ktG"], ["password_salt", "4OEZkO933onnP5laXBat"], ["persistence_token", "8b326f1737ee505383a44c8f045224190345b42acdd11660329aae79fb0695be7eee80c13db78a4ac3a2c87c238899c75344b6fd701506488d1d20aab2cf1d30"], ["single_access_token", "i6wHwZ7f6eRCC9cyT4iy"], ["perishable_token", "DCJfCTnSlPQSpHJqvVaV"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 19:06:55.241195"], ["updated_at", "2019-03-25 19:06:55.241195"]]
1225
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1226
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 20:06:55 +0100
1227
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
1228
+ Parameters: {"locale"=>"de"}
1229
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
1230
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (3.9ms)
1231
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (29.5ms)
1232
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (183.0ms)
1233
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (24.2ms)
1234
+ Completed 200 OK in 762ms (Views: 760.6ms | ActiveRecord: 0.0ms)
1235
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 20:06:56 +0100
1236
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
1237
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
1238
+ Cmor::UserArea::User Load (0.5ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
1239
+  (0.3ms) SAVEPOINT active_record_1
1240
+ Cmor::UserArea::User Update (0.6ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "BNnFVgtX0_qVT8yTNkx7"], ["login_count", 1], ["last_request_at", "2019-03-25 19:06:56.184554"], ["current_login_at", "2019-03-25 19:06:56.183536"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 19:06:56.188558"], ["id", 1]]
1241
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1242
+ Redirected to http://www.example.com/de
1243
+ Completed 302 Found in 80ms (ActiveRecord: 1.6ms)
1244
+ Started GET "/de" for 127.0.0.1 at 2019-03-25 20:06:56 +0100
1245
+ Processing by HomeController#index as HTML
1246
+ Parameters: {"locale"=>"de"}
1247
+ Rendering home/index.html.erb within layouts/application
1248
+ Rendered home/index.html.erb within layouts/application (2.0ms)
1249
+ Cmor::UserArea::User Load (1.4ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1250
+  (0.1ms) SAVEPOINT active_record_1
1251
+ Cmor::UserArea::User Update (0.2ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "8O59x0SFNidLNXWCVrAG"], ["last_request_at", "2019-03-25 19:06:56.246003"], ["updated_at", "2019-03-25 19:06:56.256736"], ["id", 1]]
1252
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1253
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (22.8ms)
1254
+ Completed 200 OK in 42ms (Views: 37.9ms | ActiveRecord: 1.8ms)
1255
+  (0.2ms) rollback transaction
1256
+  (0.1ms) begin transaction
1257
+  (0.5ms) SAVEPOINT active_record_1
1258
+ Cmor::UserArea::User Exists (1.8ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "7d46f9d1104774686ae9facdee44680049935c9319012bbdc6fc6a37153e8ecae31fecbfa84dbb51fc8ebdc3191ca4a88b81d03874d7676c4261770f6bb47339"], ["LIMIT", 1]]
1259
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "l-8ixIB1mx8HfI4DHVXw"], ["LIMIT", 1]]
1260
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
1261
+ Cmor::UserArea::User Create (0.4ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$FKBCSdLU5eiuvnxS3gMQZ.9/TdbMYGs5JCvo3cdlviGfLlrxU8oFu"], ["password_salt", "GWX4fD2xY3682P2J70Y6"], ["persistence_token", "7d46f9d1104774686ae9facdee44680049935c9319012bbdc6fc6a37153e8ecae31fecbfa84dbb51fc8ebdc3191ca4a88b81d03874d7676c4261770f6bb47339"], ["single_access_token", "l-8ixIB1mx8HfI4DHVXw"], ["perishable_token", "spxasCYDWJ6IdX8LgRT6"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 19:06:56.349710"], ["updated_at", "2019-03-25 19:06:56.349710"]]
1262
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1263
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 20:06:56 +0100
1264
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
1265
+ Parameters: {"locale"=>"de"}
1266
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
1267
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (0.3ms)
1268
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (15.5ms)
1269
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (36.3ms)
1270
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (4.1ms)
1271
+ Completed 200 OK in 52ms (Views: 49.0ms | ActiveRecord: 0.0ms)
1272
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 20:06:56 +0100
1273
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
1274
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
1275
+ Cmor::UserArea::User Load (0.4ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
1276
+  (0.1ms) SAVEPOINT active_record_1
1277
+ Cmor::UserArea::User Update (0.4ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "2XDmEqfU5EAi-xvzKxFP"], ["login_count", 1], ["last_request_at", "2019-03-25 19:06:56.515330"], ["current_login_at", "2019-03-25 19:06:56.515156"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 19:06:56.517957"], ["id", 1]]
1278
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1279
+ Redirected to http://www.example.com/de
1280
+ Completed 302 Found in 72ms (ActiveRecord: 1.1ms)
1281
+ Started GET "/de" for 127.0.0.1 at 2019-03-25 20:06:56 +0100
1282
+ Processing by HomeController#index as HTML
1283
+ Parameters: {"locale"=>"de"}
1284
+ Rendering home/index.html.erb within layouts/application
1285
+ Rendered home/index.html.erb within layouts/application (0.1ms)
1286
+ Cmor::UserArea::User Load (0.4ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1287
+  (0.1ms) SAVEPOINT active_record_1
1288
+ Cmor::UserArea::User Update (0.2ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "4towAbivs3zj8T1uyM4I"], ["last_request_at", "2019-03-25 19:06:56.538129"], ["updated_at", "2019-03-25 19:06:56.540022"], ["id", 1]]
1289
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1290
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (9.5ms)
1291
+ Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.8ms)
1292
+ Started DELETE "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 20:06:56 +0100
1293
+ Processing by Cmor::UserArea::UserSessionsController#destroy as HTML
1294
+ Parameters: {"locale"=>"de"}
1295
+ Cmor::UserArea::User Load (0.5ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1296
+  (0.1ms) SAVEPOINT active_record_1
1297
+ Cmor::UserArea::User Update (0.1ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "yyFEisokD7WTgscOHdQM"], ["last_request_at", "2019-03-25 19:06:56.562480"], ["updated_at", "2019-03-25 19:06:56.563882"], ["id", 1]]
1298
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1299
+ [LocationHistoryConcern] Storing last location [http://www.example.com/de]
1300
+ Cmor::UserArea::User Load (0.5ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1301
+  (0.2ms) SAVEPOINT active_record_1
1302
+ Cmor::UserArea::User Update (0.2ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "ITNW4nj9FFWISL-fIKC6"], ["last_request_at", "2019-03-25 19:06:56.576382"], ["updated_at", "2019-03-25 19:06:56.577822"], ["id", 1]]
1303
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1304
+ Redirected to http://www.example.com/de
1305
+ Completed 302 Found in 27ms (ActiveRecord: 1.9ms)
1306
+ Started GET "/de" for 127.0.0.1 at 2019-03-25 20:06:56 +0100
1307
+ Processing by HomeController#index as HTML
1308
+ Parameters: {"locale"=>"de"}
1309
+ Rendering home/index.html.erb within layouts/application
1310
+ Rendered home/index.html.erb within layouts/application (0.1ms)
1311
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (2.8ms)
1312
+ Completed 200 OK in 9ms (Views: 8.1ms | ActiveRecord: 0.0ms)
1313
+  (0.2ms) rollback transaction
1314
+  (0.1ms) begin transaction
1315
+  (0.2ms) SAVEPOINT active_record_1
1316
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "fa6726f489458a57da7a89f65133af51a6ca53d1bfee0d16d775ef29e6e32183b8f07bfdf74229dabe7b926de811ab21159902a8eca29aafa35aa7d667cf83cf"], ["LIMIT", 1]]
1317
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "6EwkGrqxLjanMIkhw-jx"], ["LIMIT", 1]]
1318
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
1319
+ Cmor::UserArea::User Create (0.4ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$PQq0.pXj/bx9NKsWoEeb6exwejjAERIeyXb7GOJWRPyu3062yfFl6"], ["password_salt", "B2WM_ZTbtecwnRuo_Zhz"], ["persistence_token", "fa6726f489458a57da7a89f65133af51a6ca53d1bfee0d16d775ef29e6e32183b8f07bfdf74229dabe7b926de811ab21159902a8eca29aafa35aa7d667cf83cf"], ["single_access_token", "6EwkGrqxLjanMIkhw-jx"], ["perishable_token", "rVo-lCtFlnIKBoQSfdf6"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 19:09:35.870623"], ["updated_at", "2019-03-25 19:09:35.870623"]]
1320
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1321
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 20:09:35 +0100
1322
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
1323
+ Parameters: {"locale"=>"de"}
1324
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
1325
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (5.4ms)
1326
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (19.9ms)
1327
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (198.4ms)
1328
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (22.0ms)
1329
+ Completed 200 OK in 745ms (Views: 743.0ms | ActiveRecord: 0.0ms)
1330
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 20:09:36 +0100
1331
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
1332
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
1333
+ Cmor::UserArea::User Load (0.5ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
1334
+  (0.2ms) SAVEPOINT active_record_1
1335
+ Cmor::UserArea::User Update (0.4ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "oe7cHJs4jrHpZpx_4zxv"], ["login_count", 1], ["last_request_at", "2019-03-25 19:09:36.821938"], ["current_login_at", "2019-03-25 19:09:36.820986"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 19:09:36.825323"], ["id", 1]]
1336
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1337
+ Redirected to http://www.example.com/de
1338
+ Completed 302 Found in 80ms (ActiveRecord: 1.2ms)
1339
+ Started GET "/de" for 127.0.0.1 at 2019-03-25 20:09:36 +0100
1340
+ Processing by HomeController#index as HTML
1341
+ Parameters: {"locale"=>"de"}
1342
+ Rendering home/index.html.erb within layouts/application
1343
+ Rendered home/index.html.erb within layouts/application (1.5ms)
1344
+ Cmor::UserArea::User Load (0.4ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1345
+  (0.1ms) SAVEPOINT active_record_1
1346
+ Cmor::UserArea::User Update (0.2ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "AeRmLWfkswrdRTasPgdv"], ["last_request_at", "2019-03-25 19:09:36.883978"], ["updated_at", "2019-03-25 19:09:36.885965"], ["id", 1]]
1347
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1348
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (13.3ms)
1349
+ Completed 200 OK in 30ms (Views: 27.0ms | ActiveRecord: 0.9ms)
1350
+  (0.3ms) rollback transaction
1351
+  (0.1ms) begin transaction
1352
+  (0.3ms) SAVEPOINT active_record_1
1353
+ Cmor::UserArea::User Exists (0.4ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "df064cfbdd5a83a7bf79bda9bada27de48b7d99b2181daa84955cb8b57915f9d6872a51edaf9eb69b655f873b1bb759635d92196413662e7b5ba884e21b89d7d"], ["LIMIT", 1]]
1354
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "rno-h1qThW3A0Ef8gglK"], ["LIMIT", 1]]
1355
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
1356
+ Cmor::UserArea::User Create (0.6ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$b9YDWRvMVqu694hjwsJx2OlqNRN/r8XqRlJQIrI0yp7SPUy7THjKW"], ["password_salt", "pcEOh7tFh75GnAPmH6QO"], ["persistence_token", "df064cfbdd5a83a7bf79bda9bada27de48b7d99b2181daa84955cb8b57915f9d6872a51edaf9eb69b655f873b1bb759635d92196413662e7b5ba884e21b89d7d"], ["single_access_token", "rno-h1qThW3A0Ef8gglK"], ["perishable_token", "JzEs4E5za8B5AXnEmxh_"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 19:09:36.981387"], ["updated_at", "2019-03-25 19:09:36.981387"]]
1357
+  (0.3ms) RELEASE SAVEPOINT active_record_1
1358
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 20:09:36 +0100
1359
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
1360
+ Parameters: {"locale"=>"de"}
1361
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
1362
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (0.1ms)
1363
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (13.5ms)
1364
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (25.1ms)
1365
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (2.7ms)
1366
+ Completed 200 OK in 39ms (Views: 37.9ms | ActiveRecord: 0.0ms)
1367
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 20:09:37 +0100
1368
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
1369
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
1370
+ Cmor::UserArea::User Load (0.6ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
1371
+  (0.2ms) SAVEPOINT active_record_1
1372
+ Cmor::UserArea::User Update (0.4ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "VQeSsQrQCto4qa92hGFJ"], ["login_count", 1], ["last_request_at", "2019-03-25 19:09:37.151337"], ["current_login_at", "2019-03-25 19:09:37.151195"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 19:09:37.153442"], ["id", 1]]
1373
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1374
+ Redirected to http://www.example.com/de
1375
+ Completed 302 Found in 74ms (ActiveRecord: 1.4ms)
1376
+ Started GET "/de" for 127.0.0.1 at 2019-03-25 20:09:37 +0100
1377
+ Processing by HomeController#index as HTML
1378
+ Parameters: {"locale"=>"de"}
1379
+ Rendering home/index.html.erb within layouts/application
1380
+ Rendered home/index.html.erb within layouts/application (0.1ms)
1381
+ Cmor::UserArea::User Load (0.4ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1382
+  (0.0ms) SAVEPOINT active_record_1
1383
+ Cmor::UserArea::User Update (1.3ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "W4fcXrn4gChq_L7fP2O_"], ["last_request_at", "2019-03-25 19:09:37.182440"], ["updated_at", "2019-03-25 19:09:37.183941"], ["id", 1]]
1384
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1385
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (13.5ms)
1386
+ Completed 200 OK in 22ms (Views: 19.1ms | ActiveRecord: 1.8ms)
1387
+ Started DELETE "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 20:09:37 +0100
1388
+ Processing by Cmor::UserArea::UserSessionsController#destroy as HTML
1389
+ Parameters: {"locale"=>"de"}
1390
+ Cmor::UserArea::User Load (0.5ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1391
+  (0.2ms) SAVEPOINT active_record_1
1392
+ Cmor::UserArea::User Update (0.2ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "JUapBclkLrmNiwVNbhC8"], ["last_request_at", "2019-03-25 19:09:37.208874"], ["updated_at", "2019-03-25 19:09:37.210745"], ["id", 1]]
1393
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1394
+ [LocationHistoryConcern] Storing last location [http://www.example.com/de]
1395
+ Cmor::UserArea::User Load (0.3ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1396
+  (0.1ms) SAVEPOINT active_record_1
1397
+ Cmor::UserArea::User Update (0.2ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "SR4o4_jmMnAnmgW31u7A"], ["last_request_at", "2019-03-25 19:09:37.216723"], ["updated_at", "2019-03-25 19:09:37.218407"], ["id", 1]]
1398
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1399
+ Redirected to http://www.example.com/de
1400
+ Completed 302 Found in 21ms (ActiveRecord: 1.7ms)
1401
+ Started GET "/de" for 127.0.0.1 at 2019-03-25 20:09:37 +0100
1402
+ Processing by HomeController#index as HTML
1403
+ Parameters: {"locale"=>"de"}
1404
+ Rendering home/index.html.erb within layouts/application
1405
+ Rendered home/index.html.erb within layouts/application (0.1ms)
1406
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (3.0ms)
1407
+ Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.0ms)
1408
+  (1.6ms) rollback transaction
1409
+  (0.1ms) begin transaction
1410
+  (0.1ms) rollback transaction
1411
+  (0.1ms) begin transaction
1412
+  (1.1ms) rollback transaction
1413
+  (0.1ms) begin transaction
1414
+  (0.1ms) rollback transaction
1415
+  (0.1ms) begin transaction
1416
+  (0.4ms) SAVEPOINT active_record_1
1417
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "7bc206b99fe3ce45d7e64cb92bf191f0eaaba807b4d9295043a7d48137880206f6c299659718f98012aef65ab5a395e3d62f8a435d6814c7b3abac7af116367d"], ["LIMIT", 1]]
1418
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "yzYCeq7TRLyQfkHbCxDi"], ["LIMIT", 1]]
1419
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
1420
+ Cmor::UserArea::User Create (2.5ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$YGcESwzuZnvfZiJEKFU.T.lLGrA95Yl1sLgdHYYhTx0ezMLPwvaae"], ["password_salt", "3YY0014zw-PuonY4JNKX"], ["persistence_token", "7bc206b99fe3ce45d7e64cb92bf191f0eaaba807b4d9295043a7d48137880206f6c299659718f98012aef65ab5a395e3d62f8a435d6814c7b3abac7af116367d"], ["single_access_token", "yzYCeq7TRLyQfkHbCxDi"], ["perishable_token", "-AO5FuimOQsWOMIfY2Zc"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 19:09:37.327639"], ["updated_at", "2019-03-25 19:09:37.327639"]]
1421
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1422
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 20:09:37 +0100
1423
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
1424
+ Parameters: {"locale"=>"de"}
1425
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
1426
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (0.2ms)
1427
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (11.7ms)
1428
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (25.8ms)
1429
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (8.8ms)
1430
+ Completed 200 OK in 46ms (Views: 44.3ms | ActiveRecord: 0.0ms)
1431
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 20:09:37 +0100
1432
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
1433
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
1434
+ Cmor::UserArea::User Load (0.1ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
1435
+  (0.1ms) SAVEPOINT active_record_1
1436
+ Cmor::UserArea::User Update (1.5ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "uu-zpleGL7SsP1C-Ayz6"], ["login_count", 1], ["last_request_at", "2019-03-25 19:09:37.492972"], ["current_login_at", "2019-03-25 19:09:37.491750"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 19:09:37.494397"], ["id", 1]]
1437
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1438
+ Redirected to http://www.example.com/de
1439
+ Completed 302 Found in 70ms (ActiveRecord: 1.9ms)
1440
+ Started GET "/de" for 127.0.0.1 at 2019-03-25 20:09:37 +0100
1441
+ Processing by HomeController#index as HTML
1442
+ Parameters: {"locale"=>"de"}
1443
+ Rendering home/index.html.erb within layouts/application
1444
+ Rendered home/index.html.erb within layouts/application (0.1ms)
1445
+ Cmor::UserArea::User Load (0.5ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1446
+  (0.2ms) SAVEPOINT active_record_1
1447
+ Cmor::UserArea::User Update (1.8ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "BZ8zcbHbPBqYExwq7BdA"], ["last_request_at", "2019-03-25 19:09:37.517357"], ["updated_at", "2019-03-25 19:09:37.519712"], ["id", 1]]
1448
+  (0.3ms) RELEASE SAVEPOINT active_record_1
1449
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (19.2ms)
1450
+ Completed 200 OK in 25ms (Views: 21.3ms | ActiveRecord: 2.8ms)
1451
+ Started GET "/de/benutzer/profil/edit" for 127.0.0.1 at 2019-03-25 20:09:37 +0100
1452
+ Processing by Cmor::UserArea::CurrentUsersController#edit as HTML
1453
+ Parameters: {"locale"=>"de"}
1454
+ Cmor::UserArea::User Load (0.4ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1455
+  (0.1ms) SAVEPOINT active_record_1
1456
+ Cmor::UserArea::User Update (0.2ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "vzKTPh2zgnzdkn8P-diA"], ["last_request_at", "2019-03-25 19:09:37.588080"], ["updated_at", "2019-03-25 19:09:37.589207"], ["id", 1]]
1457
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1458
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application
1459
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form_errors.html.haml (3.5ms)
1460
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form.html.haml (8.1ms)
1461
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application (28.3ms)
1462
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (0.8ms)
1463
+ Completed 200 OK in 55ms (Views: 46.3ms | ActiveRecord: 0.7ms)
1464
+  (0.9ms) rollback transaction
1465
+  (0.1ms) begin transaction
1466
+  (0.3ms) SAVEPOINT active_record_1
1467
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "acedcdd229dfa9977632c6949e8a4d8156b1bb32ba96e8d3188c4e577fd38947701740e05233f8a1822eb1061697afabd14980d5e110fc0d9d2e33d1b2061abc"], ["LIMIT", 1]]
1468
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "fykW0qiUOKZqbEBT_R6M"], ["LIMIT", 1]]
1469
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
1470
+ Cmor::UserArea::User Create (2.4ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$OoD7fQ4IsFyGu/oS/W5DwugNk2Q89jhmzCzJk0TxAEUTPWyM2zbR."], ["password_salt", "OlFEZWMQRTp4S50dElrj"], ["persistence_token", "acedcdd229dfa9977632c6949e8a4d8156b1bb32ba96e8d3188c4e577fd38947701740e05233f8a1822eb1061697afabd14980d5e110fc0d9d2e33d1b2061abc"], ["single_access_token", "fykW0qiUOKZqbEBT_R6M"], ["perishable_token", "3xS4Xy7dATPQEq-Eh8Yy"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 19:09:37.718034"], ["updated_at", "2019-03-25 19:09:37.718034"]]
1471
+  (0.6ms) RELEASE SAVEPOINT active_record_1
1472
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 20:09:37 +0100
1473
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
1474
+ Parameters: {"locale"=>"de"}
1475
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
1476
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (0.2ms)
1477
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (6.3ms)
1478
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (16.6ms)
1479
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (2.0ms)
1480
+ Completed 200 OK in 26ms (Views: 24.7ms | ActiveRecord: 0.0ms)
1481
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 20:09:37 +0100
1482
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
1483
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
1484
+ Cmor::UserArea::User Load (0.7ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
1485
+  (0.1ms) SAVEPOINT active_record_1
1486
+ Cmor::UserArea::User Update (0.5ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "Ekko02MWf09IYjraySxL"], ["login_count", 1], ["last_request_at", "2019-03-25 19:09:37.844437"], ["current_login_at", "2019-03-25 19:09:37.844233"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 19:09:37.846124"], ["id", 1]]
1487
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1488
+ Redirected to http://www.example.com/de
1489
+ Completed 302 Found in 76ms (ActiveRecord: 1.5ms)
1490
+ Started GET "/de" for 127.0.0.1 at 2019-03-25 20:09:37 +0100
1491
+ Processing by HomeController#index as HTML
1492
+ Parameters: {"locale"=>"de"}
1493
+ Rendering home/index.html.erb within layouts/application
1494
+ Rendered home/index.html.erb within layouts/application (0.1ms)
1495
+ Cmor::UserArea::User Load (0.5ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1496
+  (0.2ms) SAVEPOINT active_record_1
1497
+ Cmor::UserArea::User Update (0.3ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "6zryxwvDT2K8pZpR1axk"], ["last_request_at", "2019-03-25 19:09:37.863716"], ["updated_at", "2019-03-25 19:09:37.865135"], ["id", 1]]
1498
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1499
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (10.0ms)
1500
+ Completed 200 OK in 14ms (Views: 12.4ms | ActiveRecord: 1.2ms)
1501
+ Started GET "/de/benutzer/profil/edit" for 127.0.0.1 at 2019-03-25 20:09:37 +0100
1502
+ Processing by Cmor::UserArea::CurrentUsersController#edit as HTML
1503
+ Parameters: {"locale"=>"de"}
1504
+ Cmor::UserArea::User Load (0.4ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1505
+  (0.3ms) SAVEPOINT active_record_1
1506
+ Cmor::UserArea::User Update (0.3ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "WKC_Kcms82TlgJZuwp8-"], ["last_request_at", "2019-03-25 19:09:37.878546"], ["updated_at", "2019-03-25 19:09:37.880169"], ["id", 1]]
1507
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1508
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application
1509
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form_errors.html.haml (0.1ms)
1510
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form.html.haml (6.0ms)
1511
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application (10.8ms)
1512
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (1.8ms)
1513
+ Completed 200 OK in 25ms (Views: 16.3ms | ActiveRecord: 1.1ms)
1514
+  (1.1ms) rollback transaction
1515
+  (0.1ms) begin transaction
1516
+  (0.5ms) SAVEPOINT active_record_1
1517
+ Cmor::UserArea::User Exists (0.5ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "d2a49071f068306df5a5d5276e5caec475128fd0e631cfe740ecefc3413575e19360563dc5481b4dd78f4e12e36698a8e9ff77d2ca3dfad1982d231064378512"], ["LIMIT", 1]]
1518
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "Mru0I8p8BsHCiOS2v_lT"], ["LIMIT", 1]]
1519
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
1520
+ Cmor::UserArea::User Create (2.6ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$.ji5L9GNasirRdWtlu2Zq.vLT0xUNFOBLhmJpBhHVsAhIAkyi1l0S"], ["password_salt", "DNH3IvtX84TbIeVk-1K1"], ["persistence_token", "d2a49071f068306df5a5d5276e5caec475128fd0e631cfe740ecefc3413575e19360563dc5481b4dd78f4e12e36698a8e9ff77d2ca3dfad1982d231064378512"], ["single_access_token", "Mru0I8p8BsHCiOS2v_lT"], ["perishable_token", "QH1QYM--IcAbRXI6-Za_"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 19:09:37.984102"], ["updated_at", "2019-03-25 19:09:37.984102"]]
1521
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1522
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 20:09:37 +0100
1523
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
1524
+ Parameters: {"locale"=>"de"}
1525
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
1526
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (0.9ms)
1527
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (8.6ms)
1528
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (17.1ms)
1529
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (2.2ms)
1530
+ Completed 200 OK in 26ms (Views: 24.6ms | ActiveRecord: 0.0ms)
1531
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 20:09:38 +0100
1532
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
1533
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
1534
+ Cmor::UserArea::User Load (1.2ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
1535
+  (0.2ms) SAVEPOINT active_record_1
1536
+ Cmor::UserArea::User Update (0.3ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "fzC3F8_HIqsJzEFUkyA5"], ["login_count", 1], ["last_request_at", "2019-03-25 19:09:38.109129"], ["current_login_at", "2019-03-25 19:09:38.109007"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 19:09:38.110742"], ["id", 1]]
1537
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1538
+ Redirected to http://www.example.com/de
1539
+ Completed 302 Found in 65ms (ActiveRecord: 1.7ms)
1540
+ Started GET "/de" for 127.0.0.1 at 2019-03-25 20:09:38 +0100
1541
+ Processing by HomeController#index as HTML
1542
+ Parameters: {"locale"=>"de"}
1543
+ Rendering home/index.html.erb within layouts/application
1544
+ Rendered home/index.html.erb within layouts/application (0.1ms)
1545
+ Cmor::UserArea::User Load (0.4ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1546
+  (0.2ms) SAVEPOINT active_record_1
1547
+ Cmor::UserArea::User Update (0.4ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "_GC9IC8ChlYHNcb-59Vd"], ["last_request_at", "2019-03-25 19:09:38.125759"], ["updated_at", "2019-03-25 19:09:38.127534"], ["id", 1]]
1548
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1549
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (10.8ms)
1550
+ Completed 200 OK in 15ms (Views: 13.3ms | ActiveRecord: 1.1ms)
1551
+ Started GET "/de/benutzer/profil/edit" for 127.0.0.1 at 2019-03-25 20:09:38 +0100
1552
+ Processing by Cmor::UserArea::CurrentUsersController#edit as HTML
1553
+ Parameters: {"locale"=>"de"}
1554
+ Cmor::UserArea::User Load (0.5ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1555
+  (0.1ms) SAVEPOINT active_record_1
1556
+ Cmor::UserArea::User Update (0.3ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "j4eskZ-24TObBMlIqRgf"], ["last_request_at", "2019-03-25 19:09:38.144339"], ["updated_at", "2019-03-25 19:09:38.145502"], ["id", 1]]
1557
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1558
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application
1559
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form_errors.html.haml (0.1ms)
1560
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form.html.haml (5.9ms)
1561
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application (10.9ms)
1562
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (0.8ms)
1563
+ Completed 200 OK in 23ms (Views: 14.6ms | ActiveRecord: 1.0ms)
1564
+  (1.9ms) rollback transaction
1565
+  (0.1ms) begin transaction
1566
+ Started GET "/de/benutzer/profil/edit" for 127.0.0.1 at 2019-03-25 20:09:38 +0100
1567
+ Processing by Cmor::UserArea::CurrentUsersController#edit as HTML
1568
+ Parameters: {"locale"=>"de"}
1569
+ Redirected to http://www.example.com/de/benutzer/session/new
1570
+ Filter chain halted as :authenticate_user! rendered or redirected
1571
+ Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
1572
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 20:09:38 +0100
1573
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
1574
+ Parameters: {"locale"=>"de"}
1575
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
1576
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (0.1ms)
1577
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (5.0ms)
1578
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (11.3ms)
1579
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (1.8ms)
1580
+ Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.0ms)
1581
+  (0.1ms) rollback transaction
1582
+  (0.1ms) begin transaction
1583
+  (0.3ms) rollback transaction
1584
+  (0.3ms) begin transaction
1585
+  (0.2ms) rollback transaction
1586
+  (1.3ms) begin transaction
1587
+  (0.1ms) rollback transaction
1588
+  (0.1ms) begin transaction
1589
+ Cmor::UserArea::User Exists (0.4ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "e9283668143fc408550876883491ff60851d8a0c558f68e4916f9603f2adffa5f647b345750407c97eb3184f777d753e89abbadb39490d4f15a1584dd9c5e499"], ["LIMIT", 1]]
1590
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "SqtdonQ1XiQ5fp1zK8CM"], ["LIMIT", 1]]
1591
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user1@example.com"], ["LIMIT", 1]]
1592
+  (0.1ms) rollback transaction
1593
+  (0.1ms) begin transaction
1594
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "5d78eac4811b89c1fa93e2fbf84d436800fa8888f307e9ae6a4f040e616fab6b55e5c53590bc2766c47cbad3f73c9bf855b8dcc2619870b688fa720f0ce5a414"], ["LIMIT", 1]]
1595
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "ys6N5aChD3yyz-w496rH"], ["LIMIT", 1]]
1596
+  (0.1ms) rollback transaction
1597
+  (0.1ms) begin transaction
1598
+  (0.2ms) SAVEPOINT active_record_1
1599
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "db2541f1335a1f41af7f67685dfcbf804ffeb4dfb86d821d11941eac941cc12bdafce86cde84c9b33ca183bbf6a882e15f122546e1c26d1fe0e4f501d759a5c0"], ["LIMIT", 1]]
1600
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "VKgJsDV27IIXCimMIaUn"], ["LIMIT", 1]]
1601
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user2@example.com"], ["LIMIT", 1]]
1602
+ Cmor::UserArea::User Create (0.3ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "user2@example.com"], ["crypted_password", "$2a$10$NFC.0tsEF7wb5nY.DfBGJusEzQqkpLVyt0JQpKqmM/UQGyV9XUXc."], ["password_salt", "3Y70AAi3VkOWPDh0-KlY"], ["persistence_token", "db2541f1335a1f41af7f67685dfcbf804ffeb4dfb86d821d11941eac941cc12bdafce86cde84c9b33ca183bbf6a882e15f122546e1c26d1fe0e4f501d759a5c0"], ["single_access_token", "VKgJsDV27IIXCimMIaUn"], ["perishable_token", "SI0NgjtfRoNdRaunPlqP"], ["created_at", "2019-03-25 19:09:38.365677"], ["updated_at", "2019-03-25 19:09:38.365677"]]
1603
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1604
+  (0.1ms) rollback transaction
1605
+  (0.1ms) begin transaction
1606
+  (0.1ms) rollback transaction
1607
+  (0.1ms) begin transaction
1608
+  (0.1ms) rollback transaction
1609
+  (0.1ms) begin transaction
1610
+  (0.0ms) rollback transaction
1611
+  (0.1ms) begin transaction
1612
+  (0.1ms) rollback transaction
1613
+  (0.1ms) begin transaction
1614
+  (0.1ms) rollback transaction
1615
+  (0.1ms) begin transaction
1616
+  (0.1ms) rollback transaction
1617
+  (0.1ms) begin transaction
1618
+  (0.1ms) rollback transaction
1619
+  (0.1ms) begin transaction
1620
+  (0.1ms) rollback transaction
1621
+  (0.1ms) begin transaction
1622
+  (0.1ms) rollback transaction
1623
+  (0.1ms) begin transaction
1624
+  (0.1ms) rollback transaction
1625
+  (0.1ms) begin transaction
1626
+  (0.1ms) rollback transaction
1627
+  (0.1ms) begin transaction
1628
+  (0.1ms) rollback transaction
1629
+  (0.1ms) begin transaction
1630
+  (0.1ms) rollback transaction
1631
+  (0.1ms) begin transaction
1632
+  (0.1ms) rollback transaction
1633
+  (0.1ms) begin transaction
1634
+  (0.1ms) rollback transaction
1635
+  (0.1ms) begin transaction
1636
+  (0.1ms) rollback transaction
1637
+  (0.1ms) begin transaction
1638
+  (0.1ms) rollback transaction
1639
+  (0.1ms) begin transaction
1640
+  (0.1ms) rollback transaction
1641
+  (0.1ms) begin transaction
1642
+  (0.1ms) rollback transaction
1643
+  (0.1ms) begin transaction
1644
+  (0.2ms) rollback transaction
1645
+  (0.1ms) begin transaction
1646
+  (0.1ms) rollback transaction
1647
+  (0.2ms) begin transaction
1648
+  (0.1ms) rollback transaction
1649
+  (0.1ms) begin transaction
1650
+  (0.1ms) rollback transaction
1651
+  (0.1ms) begin transaction
1652
+  (0.1ms) rollback transaction
1653
+  (0.1ms) begin transaction
1654
+  (0.1ms) rollback transaction
1655
+  (0.1ms) begin transaction
1656
+  (0.1ms) rollback transaction
1657
+  (0.1ms) begin transaction
1658
+  (0.1ms) rollback transaction
1659
+  (0.3ms) begin transaction
1660
+  (0.1ms) rollback transaction
1661
+  (0.1ms) begin transaction
1662
+  (0.1ms) rollback transaction
1663
+  (0.1ms) begin transaction
1664
+  (0.1ms) rollback transaction
1665
+  (0.1ms) begin transaction
1666
+  (0.1ms) rollback transaction
1667
+  (0.1ms) begin transaction
1668
+  (0.1ms) rollback transaction
1669
+  (0.1ms) begin transaction
1670
+  (0.2ms) rollback transaction
1671
+  (0.2ms) begin transaction
1672
+  (0.1ms) rollback transaction
1673
+  (0.1ms) begin transaction
1674
+  (0.1ms) rollback transaction
1675
+  (0.4ms) begin transaction
1676
+  (0.2ms) rollback transaction
1677
+  (0.2ms) begin transaction
1678
+  (0.1ms) rollback transaction
1679
+  (0.2ms) begin transaction
1680
+  (0.2ms) rollback transaction
1681
+  (0.2ms) begin transaction
1682
+  (0.1ms) rollback transaction
1683
+  (0.2ms) begin transaction
1684
+  (0.1ms) rollback transaction
1685
+  (0.1ms) begin transaction
1686
+  (0.1ms) rollback transaction
1687
+  (0.1ms) begin transaction
1688
+  (0.1ms) rollback transaction
1689
+  (0.1ms) begin transaction
1690
+  (0.0ms) rollback transaction
1691
+  (0.1ms) begin transaction
1692
+  (0.1ms) rollback transaction
1693
+  (1.0ms) begin transaction
1694
+  (0.3ms) SAVEPOINT active_record_1
1695
+ Cmor::UserArea::User Exists (1.4ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "d03f00e58ff247ddc7e68aeebce7aa724f7f9b4a3aacbb84062fe5f3804c876db85f08d1cf1424b0d49263ea0430bfc2eb78c780a02c805a9a0a855c2fcf84b7"], ["LIMIT", 1]]
1696
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "DGp3LSMRhzR-iYdD7IRz"], ["LIMIT", 1]]
1697
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user3@example.com"], ["LIMIT", 1]]
1698
+ Cmor::UserArea::User Create (1.2ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "user3@example.com"], ["crypted_password", "$2a$10$NFTDPiYvXTsKG3YW3HpYA.MSKImiydxOkAARvQiPypTzJru3tyxgG"], ["password_salt", "FChCLin_qZfaIy2g_3zd"], ["persistence_token", "d03f00e58ff247ddc7e68aeebce7aa724f7f9b4a3aacbb84062fe5f3804c876db85f08d1cf1424b0d49263ea0430bfc2eb78c780a02c805a9a0a855c2fcf84b7"], ["single_access_token", "DGp3LSMRhzR-iYdD7IRz"], ["perishable_token", "z5MS9Bi780jYTBy344TO"], ["created_at", "2019-03-25 19:09:38.546739"], ["updated_at", "2019-03-25 19:09:38.546739"]]
1699
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1700
+  (0.2ms) rollback transaction
1701
+  (0.1ms) begin transaction
1702
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "1ae3aa4c43fe31822a32a137b954d60f69c20f00ce54f99d1b41b356977760d22a236320ea55b3a1875b7615be55e270f4fe594c306bec07ce89a85537db21fa"], ["LIMIT", 1]]
1703
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "tbvxLcMVHS-DXLBtrZxc"], ["LIMIT", 1]]
1704
+  (0.1ms) rollback transaction
1705
+  (0.1ms) begin transaction
1706
+  (0.2ms) SAVEPOINT active_record_1
1707
+ Cmor::UserArea::User Exists (0.5ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "2345fe6efbe6ab44908a24817748e40af030dbf244e90cda5a6e1216c2b47d27b7345e48a4a64d00169a22cee650827ff170188675626a0ce1d1199c17af7e33"], ["LIMIT", 1]]
1708
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "r_sJD03cqG9ydFbVaEwk"], ["LIMIT", 1]]
1709
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user4@example.com"], ["LIMIT", 1]]
1710
+ Cmor::UserArea::User Create (1.1ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "user4@example.com"], ["crypted_password", "$2a$10$ZMscA4u7bdsAodamyLXvFu6WKevWmRVauyRREy.iSJjGYEoYiOXX6"], ["password_salt", "wP-_JsI1l7P9bV-1kkl7"], ["persistence_token", "2345fe6efbe6ab44908a24817748e40af030dbf244e90cda5a6e1216c2b47d27b7345e48a4a64d00169a22cee650827ff170188675626a0ce1d1199c17af7e33"], ["single_access_token", "r_sJD03cqG9ydFbVaEwk"], ["perishable_token", "TdpY7GBSKfiNsOlWAlqn"], ["created_at", "2019-03-25 19:09:38.642493"], ["updated_at", "2019-03-25 19:09:38.642493"]]
1711
+  (0.4ms) RELEASE SAVEPOINT active_record_1
1712
+  (0.2ms) SAVEPOINT active_record_1
1713
+ Cmor::UserArea::User Update (0.3ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "zRhnBxIVrZWiEHOnqOWW"], ["updated_at", "2019-03-25 19:09:38.649249"], ["id", 1]]
1714
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1715
+  (0.2ms) rollback transaction
1716
+  (0.1ms) begin transaction
1717
+  (0.1ms) rollback transaction
1718
+  (0.1ms) begin transaction
1719
+  (0.2ms) SELECT COUNT(*) FROM "cmor_user_area_users"
1720
+  (0.3ms) SAVEPOINT active_record_1
1721
+ Cmor::UserArea::User Exists (0.5ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "e3b594aa48065eaaecb3a976df4208c216e6fea7d6b354492c982967189dc506eb0ea9ca36d38a1910772e7ba639e966cffab65ee8c290db862b76ddf2546646"], ["LIMIT", 1]]
1722
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "pkBYs_6d-gOCeXM0nO8a"], ["LIMIT", 1]]
1723
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
1724
+ Cmor::UserArea::User Create (0.5ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$Jqinz8q2n55CF9hvIIHIhOF/NUhr4cekkm0pYaiyCan2sH4Z6esnG"], ["password_salt", "kO_1BEwd096YM2VpgeON"], ["persistence_token", "e3b594aa48065eaaecb3a976df4208c216e6fea7d6b354492c982967189dc506eb0ea9ca36d38a1910772e7ba639e966cffab65ee8c290db862b76ddf2546646"], ["single_access_token", "pkBYs_6d-gOCeXM0nO8a"], ["perishable_token", "szSLmQiMB3Stw9Ra6zbk"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 19:09:38.729873"], ["updated_at", "2019-03-25 19:09:38.729873"]]
1725
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1726
+  (0.2ms) SELECT COUNT(*) FROM "cmor_user_area_users"
1727
+  (0.2ms) rollback transaction
1728
+  (0.2ms) begin transaction
1729
+  (0.2ms) SAVEPOINT active_record_1
1730
+ Cmor::UserArea::User Exists (0.4ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "d1a9fe1f44d46284678bd7d121e57915a587f9ddb9ab03553a91bb3aa16a616c7a0beca87d5c9381eb9018244c1ce37242de3ff610483c8909b8d3996def9abd"], ["LIMIT", 1]]
1731
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "GHVjOveRSeyRlrYkDjBW"], ["LIMIT", 1]]
1732
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
1733
+ Cmor::UserArea::User Create (0.6ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$asiBJrf7O/qU1v.571m8xe42NlP7AqsKuOninDBtANq7S..lxZ2ru"], ["password_salt", "fU4cRbXJBDSmIAiGXy-R"], ["persistence_token", "d1a9fe1f44d46284678bd7d121e57915a587f9ddb9ab03553a91bb3aa16a616c7a0beca87d5c9381eb9018244c1ce37242de3ff610483c8909b8d3996def9abd"], ["single_access_token", "GHVjOveRSeyRlrYkDjBW"], ["perishable_token", "exKd5jM5KIbhCQVoR_Kb"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 19:09:38.801859"], ["updated_at", "2019-03-25 19:09:38.801859"]]
1734
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1735
+  (0.2ms) rollback transaction
1736
+  (0.1ms) begin transaction
1737
+  (0.6ms) SAVEPOINT active_record_1
1738
+ Cmor::UserArea::User Exists (5.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "b178fcabf8c386a75138e96ba522333032ecb00e1dc56649f5a9d9e9a36dc6b72c0819f81bdd2b0de02226c3d0b4ee9fae6e1c0d59dc8316d580f9de0c064a0f"], ["LIMIT", 1]]
1739
+ Cmor::UserArea::User Exists (0.7ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "1BYIBy172rjMz6RXkuY_"], ["LIMIT", 1]]
1740
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
1741
+ Cmor::UserArea::User Create (0.3ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$CSIATK/R..3e8ryaGtFhr.RAle9swfJHmtMSQnSvsJx3uchG0VO7y"], ["password_salt", "Mrpypg78d-ABULZmnItf"], ["persistence_token", "b178fcabf8c386a75138e96ba522333032ecb00e1dc56649f5a9d9e9a36dc6b72c0819f81bdd2b0de02226c3d0b4ee9fae6e1c0d59dc8316d580f9de0c064a0f"], ["single_access_token", "1BYIBy172rjMz6RXkuY_"], ["perishable_token", "5AJ8kHAZVgdKb9yHoLqC"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 19:09:38.896493"], ["updated_at", "2019-03-25 19:09:38.896493"]]
1742
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1743
+  (0.2ms) rollback transaction
1744
+  (0.1ms) begin transaction
1745
+  (0.4ms) SAVEPOINT active_record_1
1746
+ Cmor::UserArea::User Exists (0.6ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "f1a1f40c4b96e1e3ad86781c93d17da69733c111372a6d0ef585c70527aad41f7c810a81af109bc8426ad4c8d3b068bd7ad7f7e11de26d286688eed74b73d653"], ["LIMIT", 1]]
1747
+ Cmor::UserArea::User Exists (0.4ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "Sc87-EGROcQWwE7wSiyE"], ["LIMIT", 1]]
1748
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
1749
+ Cmor::UserArea::User Create (0.7ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$LSVrVmzYuix7L8JJFJYsWeqY5nL5/70W0dxg4ilYbO50qIUkp.wUa"], ["password_salt", "9k3k6w2XKg__9C31kOhE"], ["persistence_token", "f1a1f40c4b96e1e3ad86781c93d17da69733c111372a6d0ef585c70527aad41f7c810a81af109bc8426ad4c8d3b068bd7ad7f7e11de26d286688eed74b73d653"], ["single_access_token", "Sc87-EGROcQWwE7wSiyE"], ["perishable_token", "aKo4al9mETsCvDNUjlbs"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 19:09:38.981781"], ["updated_at", "2019-03-25 19:09:38.981781"]]
1750
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1751
+  (1.6ms) rollback transaction
1752
+  (0.1ms) begin transaction
1753
+  (0.1ms) SAVEPOINT active_record_1
1754
+ Cmor::UserArea::User Exists (1.8ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "23b93f24798921615491611d64690486fa297901b93ef9d3c2d701eb407a32d60c6d4b50e70f3259d0869dd583c8684d3d9e761d71569ede6f17920d7fe0c32f"], ["LIMIT", 1]]
1755
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "bmgEituRHdQ_iQiEcbuM"], ["LIMIT", 1]]
1756
+ Cmor::UserArea::User Exists (1.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
1757
+ Cmor::UserArea::User Create (2.7ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$hwyvPlFp/5ngMKHctqYLR.Ma/ppHiMsRvk67RSR3FnxbgoDwAbA2e"], ["password_salt", "Y3B2R8KTxuWq8aqKuU1W"], ["persistence_token", "23b93f24798921615491611d64690486fa297901b93ef9d3c2d701eb407a32d60c6d4b50e70f3259d0869dd583c8684d3d9e761d71569ede6f17920d7fe0c32f"], ["single_access_token", "bmgEituRHdQ_iQiEcbuM"], ["perishable_token", "S-bfhgEecaNe7N_tAdop"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 19:09:39.080538"], ["updated_at", "2019-03-25 19:09:39.080538"]]
1758
+  (0.3ms) RELEASE SAVEPOINT active_record_1
1759
+  (0.5ms) rollback transaction
1760
+  (0.1ms) begin transaction
1761
+  (0.1ms) SAVEPOINT active_record_1
1762
+ Cmor::UserArea::User Exists (0.5ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "26de08240624061aee897506153d056ba2612ee165b8ce5821cbf037f987298ece6fdebf2cc555ecf994a60d2b10ab4e792df2cbbc044e34e12c8aa77ff8b9b6"], ["LIMIT", 1]]
1763
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "YQjOKr70hxPPtdGBYWUL"], ["LIMIT", 1]]
1764
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
1765
+ Cmor::UserArea::User Create (0.5ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$xyMEytwOqFZZsrzFP1y.puPBtXa8paoZGLS6xjGyXA/kMvshW8uda"], ["password_salt", "40p-vXEvdV7paTfDa5-z"], ["persistence_token", "26de08240624061aee897506153d056ba2612ee165b8ce5821cbf037f987298ece6fdebf2cc555ecf994a60d2b10ab4e792df2cbbc044e34e12c8aa77ff8b9b6"], ["single_access_token", "YQjOKr70hxPPtdGBYWUL"], ["perishable_token", "6DBUXN5n0ycUxFTQYdWQ"], ["created_at", "2019-03-25 19:09:39.177207"], ["updated_at", "2019-03-25 19:09:39.177207"]]
1766
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1767
+  (0.6ms) SELECT COUNT(*) FROM "cmor_user_area_users"
1768
+  (0.5ms) SAVEPOINT active_record_1
1769
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "067d9a4849e15ce46afaacc8ba8f2ab7268b4cc90a94f844e3ab3a52b0880c8a902a4439a3fed885f6ea6ce61207137de0d735610d9f08c36670d14bea9d6a1e"], ["LIMIT", 1]]
1770
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "tkcLzEde2DY9-gSuhjOF"], ["LIMIT", 1]]
1771
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
1772
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
1773
+  (0.3ms) SELECT COUNT(*) FROM "cmor_user_area_users"
1774
+  (0.5ms) rollback transaction
1775
+  (0.1ms) begin transaction
1776
+  (0.1ms) rollback transaction
1777
+  (0.1ms) begin transaction
1778
+  (0.1ms) rollback transaction
1779
+  (0.1ms) begin transaction
1780
+  (0.1ms) rollback transaction
1781
+  (0.1ms) begin transaction
1782
+  (0.2ms) SAVEPOINT active_record_1
1783
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "154447af6eb45e79ca982756e8fd039441be0476378906367b13899bdc17641f89b0555e65a20689d1eba04e2b3495a445c2c194c707fa86335fba9ace0b39a3"], ["LIMIT", 1]]
1784
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "NDA-pif5zRgzltOPNj9q"], ["LIMIT", 1]]
1785
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
1786
+ Cmor::UserArea::User Create (1.1ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$QiwKxQHXQDo57FGDRzrE..FnXoBDOMY9uHYEEZ5LBPrRO3J6ulT/K"], ["password_salt", "E_Ky87lI5mFdI7rYJrcz"], ["persistence_token", "154447af6eb45e79ca982756e8fd039441be0476378906367b13899bdc17641f89b0555e65a20689d1eba04e2b3495a445c2c194c707fa86335fba9ace0b39a3"], ["single_access_token", "NDA-pif5zRgzltOPNj9q"], ["perishable_token", "HecQ00EObBPuyHii2Lsd"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 19:10:46.864122"], ["updated_at", "2019-03-25 19:10:46.864122"]]
1787
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1788
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 20:10:46 +0100
1789
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
1790
+ Parameters: {"locale"=>"de"}
1791
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
1792
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (7.2ms)
1793
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (59.6ms)
1794
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (240.0ms)
1795
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (21.3ms)
1796
+ Completed 200 OK in 729ms (Views: 725.2ms | ActiveRecord: 0.0ms)
1797
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 20:10:47 +0100
1798
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
1799
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
1800
+ Cmor::UserArea::User Load (0.4ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
1801
+  (0.2ms) SAVEPOINT active_record_1
1802
+ Cmor::UserArea::User Update (0.4ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "jiXi-rQbgV2aLr7Wz8jK"], ["login_count", 1], ["last_request_at", "2019-03-25 19:10:47.784376"], ["current_login_at", "2019-03-25 19:10:47.783299"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 19:10:47.786888"], ["id", 1]]
1803
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1804
+ Redirected to http://www.example.com/de
1805
+ Completed 302 Found in 73ms (ActiveRecord: 1.2ms)
1806
+ Started GET "/de" for 127.0.0.1 at 2019-03-25 20:10:47 +0100
1807
+ Processing by HomeController#index as HTML
1808
+ Parameters: {"locale"=>"de"}
1809
+ Rendering home/index.html.erb within layouts/application
1810
+ Rendered home/index.html.erb within layouts/application (0.7ms)
1811
+ Cmor::UserArea::User Load (0.4ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1812
+  (0.2ms) SAVEPOINT active_record_1
1813
+ Cmor::UserArea::User Update (0.3ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "KMiyY9aUN84jwzWx1cSc"], ["last_request_at", "2019-03-25 19:10:47.828906"], ["updated_at", "2019-03-25 19:10:47.830592"], ["id", 1]]
1814
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1815
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (11.5ms)
1816
+ Completed 200 OK in 25ms (Views: 21.8ms | ActiveRecord: 1.1ms)
1817
+ Started GET "/de/benutzer/profil/edit" for 127.0.0.1 at 2019-03-25 20:10:47 +0100
1818
+ Processing by Cmor::UserArea::CurrentUsersController#edit as HTML
1819
+ Parameters: {"locale"=>"de"}
1820
+ Cmor::UserArea::User Load (0.5ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1821
+  (0.1ms) SAVEPOINT active_record_1
1822
+ Cmor::UserArea::User Update (0.2ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "QOJ737sWmiNglZDeQY69"], ["last_request_at", "2019-03-25 19:10:47.874010"], ["updated_at", "2019-03-25 19:10:47.875604"], ["id", 1]]
1823
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1824
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application
1825
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form_errors.html.haml (4.2ms)
1826
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form.html.haml (10.3ms)
1827
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application (32.4ms)
1828
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (0.7ms)
1829
+ Completed 200 OK in 69ms (Views: 54.7ms | ActiveRecord: 1.0ms)
1830
+  (0.3ms) rollback transaction
1831
+  (0.1ms) begin transaction
1832
+  (0.3ms) SAVEPOINT active_record_1
1833
+ Cmor::UserArea::User Exists (0.4ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "e001dbb4d8a789453e9ce58e54df2448209bbc6fa0aaba53657f991d3e0ec4f81c0db9b7a73c01dd67ac10b38bdd059ba8baee9baebc0f51716d62a57f476c8a"], ["LIMIT", 1]]
1834
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "H39zHHeYm265Hw_EdWvv"], ["LIMIT", 1]]
1835
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
1836
+ Cmor::UserArea::User Create (1.9ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$ntQbht8.lhANvN369LqYH.FkeFPxjJJIow4ORaeQXqbb3.isFsGJy"], ["password_salt", "cRP__wGwKNF2OilvZMQG"], ["persistence_token", "e001dbb4d8a789453e9ce58e54df2448209bbc6fa0aaba53657f991d3e0ec4f81c0db9b7a73c01dd67ac10b38bdd059ba8baee9baebc0f51716d62a57f476c8a"], ["single_access_token", "H39zHHeYm265Hw_EdWvv"], ["perishable_token", "boBFCmHcmeZWJHAPbzSp"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 19:10:48.016228"], ["updated_at", "2019-03-25 19:10:48.016228"]]
1837
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1838
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 20:10:48 +0100
1839
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
1840
+ Parameters: {"locale"=>"de"}
1841
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
1842
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (0.2ms)
1843
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (5.4ms)
1844
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (15.1ms)
1845
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (3.5ms)
1846
+ Completed 200 OK in 28ms (Views: 24.9ms | ActiveRecord: 0.0ms)
1847
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 20:10:48 +0100
1848
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
1849
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
1850
+ Cmor::UserArea::User Load (1.3ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
1851
+  (0.2ms) SAVEPOINT active_record_1
1852
+ Cmor::UserArea::User Update (1.3ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "nzC9qe358pe9AyvCaMIk"], ["login_count", 1], ["last_request_at", "2019-03-25 19:10:48.151502"], ["current_login_at", "2019-03-25 19:10:48.151332"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 19:10:48.154220"], ["id", 1]]
1853
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1854
+ Redirected to http://www.example.com/de
1855
+ Completed 302 Found in 83ms (ActiveRecord: 2.9ms)
1856
+ Started GET "/de" for 127.0.0.1 at 2019-03-25 20:10:48 +0100
1857
+ Processing by HomeController#index as HTML
1858
+ Parameters: {"locale"=>"de"}
1859
+ Rendering home/index.html.erb within layouts/application
1860
+ Rendered home/index.html.erb within layouts/application (0.1ms)
1861
+ Cmor::UserArea::User Load (0.5ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1862
+  (0.2ms) SAVEPOINT active_record_1
1863
+ Cmor::UserArea::User Update (0.4ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "j3nTzE5-ukCeDdviKzvh"], ["last_request_at", "2019-03-25 19:10:48.181338"], ["updated_at", "2019-03-25 19:10:48.182619"], ["id", 1]]
1864
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1865
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (9.9ms)
1866
+ Completed 200 OK in 16ms (Views: 13.8ms | ActiveRecord: 1.2ms)
1867
+ Started GET "/de/benutzer/profil/edit" for 127.0.0.1 at 2019-03-25 20:10:48 +0100
1868
+ Processing by Cmor::UserArea::CurrentUsersController#edit as HTML
1869
+ Parameters: {"locale"=>"de"}
1870
+ Cmor::UserArea::User Load (0.4ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1871
+  (0.2ms) SAVEPOINT active_record_1
1872
+ Cmor::UserArea::User Update (0.3ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "4c27pszWMZ5-JnIMiWLP"], ["last_request_at", "2019-03-25 19:10:48.197633"], ["updated_at", "2019-03-25 19:10:48.199033"], ["id", 1]]
1873
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1874
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application
1875
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form_errors.html.haml (0.1ms)
1876
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form.html.haml (7.8ms)
1877
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application (12.9ms)
1878
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (0.9ms)
1879
+ Completed 200 OK in 27ms (Views: 17.7ms | ActiveRecord: 1.0ms)
1880
+  (2.0ms) rollback transaction
1881
+  (0.3ms) begin transaction
1882
+  (0.3ms) SAVEPOINT active_record_1
1883
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "d4f978b57d43c01705d233d5eba189045e5b0f72e14dbfe8bee5e89689a50a79a0a095085c3978b80d00f2e0d89688923771237da440f04c50c6dfed142d707d"], ["LIMIT", 1]]
1884
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "h43RP8xEK6EuqfAFi1sV"], ["LIMIT", 1]]
1885
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
1886
+ Cmor::UserArea::User Create (1.4ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$xUiwBqkudzv2aoWRE83R3eBxNMXEMwYyXeN8x9T0p07MuEgcIQ5.q"], ["password_salt", "Q1dVwW4Cc81vuVhI86Ms"], ["persistence_token", "d4f978b57d43c01705d233d5eba189045e5b0f72e14dbfe8bee5e89689a50a79a0a095085c3978b80d00f2e0d89688923771237da440f04c50c6dfed142d707d"], ["single_access_token", "h43RP8xEK6EuqfAFi1sV"], ["perishable_token", "L1RvWQKs9OYNq-Ewtt_8"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 19:10:48.343652"], ["updated_at", "2019-03-25 19:10:48.343652"]]
1887
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1888
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 20:10:48 +0100
1889
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
1890
+ Parameters: {"locale"=>"de"}
1891
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
1892
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (0.1ms)
1893
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (5.2ms)
1894
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (12.2ms)
1895
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (3.6ms)
1896
+ Completed 200 OK in 24ms (Views: 22.6ms | ActiveRecord: 0.0ms)
1897
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 20:10:48 +0100
1898
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
1899
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
1900
+ Cmor::UserArea::User Load (0.8ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
1901
+  (0.3ms) SAVEPOINT active_record_1
1902
+ Cmor::UserArea::User Update (0.4ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "BQV3X-AzbYYw8TqauemY"], ["login_count", 1], ["last_request_at", "2019-03-25 19:10:48.462056"], ["current_login_at", "2019-03-25 19:10:48.461840"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 19:10:48.463986"], ["id", 1]]
1903
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1904
+ Redirected to http://www.example.com/de
1905
+ Completed 302 Found in 75ms (ActiveRecord: 1.6ms)
1906
+ Started GET "/de" for 127.0.0.1 at 2019-03-25 20:10:48 +0100
1907
+ Processing by HomeController#index as HTML
1908
+ Parameters: {"locale"=>"de"}
1909
+ Rendering home/index.html.erb within layouts/application
1910
+ Rendered home/index.html.erb within layouts/application (0.1ms)
1911
+ Cmor::UserArea::User Load (0.4ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1912
+  (0.2ms) SAVEPOINT active_record_1
1913
+ Cmor::UserArea::User Update (0.2ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "jfmHe4u3gftzupe7-6O5"], ["last_request_at", "2019-03-25 19:10:48.481433"], ["updated_at", "2019-03-25 19:10:48.482831"], ["id", 1]]
1914
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1915
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (10.2ms)
1916
+ Completed 200 OK in 14ms (Views: 12.6ms | ActiveRecord: 0.9ms)
1917
+ Started GET "/de/benutzer/profil/edit" for 127.0.0.1 at 2019-03-25 20:10:48 +0100
1918
+ Processing by Cmor::UserArea::CurrentUsersController#edit as HTML
1919
+ Parameters: {"locale"=>"de"}
1920
+ Cmor::UserArea::User Load (0.4ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1921
+  (0.1ms) SAVEPOINT active_record_1
1922
+ Cmor::UserArea::User Update (0.3ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "HFwsETJgKdxdobOkIcjm"], ["last_request_at", "2019-03-25 19:10:48.497484"], ["updated_at", "2019-03-25 19:10:48.498669"], ["id", 1]]
1923
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1924
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application
1925
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form_errors.html.haml (0.2ms)
1926
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form.html.haml (7.4ms)
1927
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application (15.2ms)
1928
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (1.6ms)
1929
+ Completed 200 OK in 32ms (Views: 21.9ms | ActiveRecord: 0.9ms)
1930
+  (0.3ms) rollback transaction
1931
+  (0.1ms) begin transaction
1932
+ Started GET "/de/benutzer/profil/edit" for 127.0.0.1 at 2019-03-25 20:10:48 +0100
1933
+ Processing by Cmor::UserArea::CurrentUsersController#edit as HTML
1934
+ Parameters: {"locale"=>"de"}
1935
+ Redirected to http://www.example.com/de/benutzer/session/new
1936
+ Filter chain halted as :authenticate_user! rendered or redirected
1937
+ Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
1938
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 20:10:48 +0100
1939
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
1940
+ Parameters: {"locale"=>"de"}
1941
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
1942
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (0.1ms)
1943
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (3.5ms)
1944
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (8.5ms)
1945
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (1.8ms)
1946
+ Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.0ms)
1947
+  (0.1ms) rollback transaction
1948
+  (0.1ms) begin transaction
1949
+  (0.1ms) rollback transaction
1950
+  (0.1ms) begin transaction
1951
+  (0.1ms) rollback transaction
1952
+  (0.4ms) begin transaction
1953
+  (0.4ms) rollback transaction
1954
+  (0.1ms) begin transaction
1955
+  (0.2ms) SAVEPOINT active_record_1
1956
+ Cmor::UserArea::User Exists (0.5ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "344136532204e65a0a6ba218986e4a345bf60644b5c2a42d4c77e4240b63a213ef18b14cebe31117a7f8e759a4d92e57b042c7f09b780241b6964a5f8e2c069c"], ["LIMIT", 1]]
1957
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "96XH-aoDOv7Se1SP8P4M"], ["LIMIT", 1]]
1958
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
1959
+ Cmor::UserArea::User Create (1.1ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$a2ttgFGpNmqxYY.mEE4A..KwNYg2fwQkc2gwCO9dNaUwhepVgzBDm"], ["password_salt", "34nLtQfyBxjWRXd7WCWk"], ["persistence_token", "344136532204e65a0a6ba218986e4a345bf60644b5c2a42d4c77e4240b63a213ef18b14cebe31117a7f8e759a4d92e57b042c7f09b780241b6964a5f8e2c069c"], ["single_access_token", "96XH-aoDOv7Se1SP8P4M"], ["perishable_token", "nSdvpxIdGRWXfwuYAO-4"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 19:11:15.068102"], ["updated_at", "2019-03-25 19:11:15.068102"]]
1960
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1961
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 20:11:15 +0100
1962
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
1963
+ Parameters: {"locale"=>"de"}
1964
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
1965
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (3.3ms)
1966
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (32.8ms)
1967
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (191.3ms)
1968
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (30.6ms)
1969
+ Completed 200 OK in 796ms (Views: 793.3ms | ActiveRecord: 0.0ms)
1970
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 20:11:15 +0100
1971
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
1972
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
1973
+ Cmor::UserArea::User Load (0.4ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
1974
+  (0.2ms) SAVEPOINT active_record_1
1975
+ Cmor::UserArea::User Update (0.3ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "4Z2ri3BsH9Zv4BHq_cQY"], ["login_count", 1], ["last_request_at", "2019-03-25 19:11:16.062145"], ["current_login_at", "2019-03-25 19:11:16.061178"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 19:11:16.064442"], ["id", 1]]
1976
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1977
+ Redirected to http://www.example.com/de
1978
+ Completed 302 Found in 73ms (ActiveRecord: 1.1ms)
1979
+ Started GET "/de" for 127.0.0.1 at 2019-03-25 20:11:16 +0100
1980
+ Processing by HomeController#index as HTML
1981
+ Parameters: {"locale"=>"de"}
1982
+ Rendering home/index.html.erb within layouts/application
1983
+ Rendered home/index.html.erb within layouts/application (0.8ms)
1984
+ Cmor::UserArea::User Load (0.4ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1985
+  (0.2ms) SAVEPOINT active_record_1
1986
+ Cmor::UserArea::User Update (0.3ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "_3ZOsf8xvDn1D8T2CBBy"], ["last_request_at", "2019-03-25 19:11:16.105769"], ["updated_at", "2019-03-25 19:11:16.108207"], ["id", 1]]
1987
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1988
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (14.0ms)
1989
+ Completed 200 OK in 29ms (Views: 25.6ms | ActiveRecord: 1.1ms)
1990
+ Started GET "/de/benutzer/profil/edit" for 127.0.0.1 at 2019-03-25 20:11:16 +0100
1991
+ Processing by Cmor::UserArea::CurrentUsersController#edit as HTML
1992
+ Parameters: {"locale"=>"de"}
1993
+ Cmor::UserArea::User Load (1.4ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1994
+  (1.5ms) SAVEPOINT active_record_1
1995
+ Cmor::UserArea::User Update (0.5ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "S7YskpYGA2AkPWTxAHyH"], ["last_request_at", "2019-03-25 19:11:16.165077"], ["updated_at", "2019-03-25 19:11:16.168758"], ["id", 1]]
1996
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1997
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application
1998
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form_errors.html.haml (9.3ms)
1999
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form.html.haml (16.7ms)
2000
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application (68.3ms)
2001
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (2.2ms)
2002
+ Completed 200 OK in 114ms (Views: 95.3ms | ActiveRecord: 3.6ms)
2003
+  (1.9ms) rollback transaction
2004
+  (0.1ms) begin transaction
2005
+  (2.0ms) SAVEPOINT active_record_1
2006
+ Cmor::UserArea::User Exists (0.4ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "5d82abd5495cd5cafa5eacb427e4a911cd2d38986110e425ccae5fcf766d3aa88dcaae89f6d7de2bec1cc90f761d84936f9566da77fb3ee795bd06dd8197b778"], ["LIMIT", 1]]
2007
+ Cmor::UserArea::User Exists (0.4ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "vbm8BNYes5lxnJ6ja81M"], ["LIMIT", 1]]
2008
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
2009
+ Cmor::UserArea::User Create (2.5ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$LzNFFUCHtSmvmliJdEnkmeduA0MahS8K62UEtkv51Rm8IZzPXfWK2"], ["password_salt", "4_3Ipm6P_jEbh1LN2fo2"], ["persistence_token", "5d82abd5495cd5cafa5eacb427e4a911cd2d38986110e425ccae5fcf766d3aa88dcaae89f6d7de2bec1cc90f761d84936f9566da77fb3ee795bd06dd8197b778"], ["single_access_token", "vbm8BNYes5lxnJ6ja81M"], ["perishable_token", "-cePeM3i06hTNcMT52Z8"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 19:11:16.366003"], ["updated_at", "2019-03-25 19:11:16.366003"]]
2010
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2011
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 20:11:16 +0100
2012
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
2013
+ Parameters: {"locale"=>"de"}
2014
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
2015
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (0.4ms)
2016
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (14.5ms)
2017
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (34.0ms)
2018
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (11.2ms)
2019
+ Completed 200 OK in 57ms (Views: 54.9ms | ActiveRecord: 0.0ms)
2020
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 20:11:16 +0100
2021
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
2022
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
2023
+ Cmor::UserArea::User Load (1.0ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
2024
+  (0.2ms) SAVEPOINT active_record_1
2025
+ Cmor::UserArea::User Update (0.3ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "vMjwN3QYWxEd4mv28Mla"], ["login_count", 1], ["last_request_at", "2019-03-25 19:11:16.545049"], ["current_login_at", "2019-03-25 19:11:16.544883"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 19:11:16.547942"], ["id", 1]]
2026
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2027
+ Redirected to http://www.example.com/de
2028
+ Completed 302 Found in 79ms (ActiveRecord: 1.7ms)
2029
+ Started GET "/de" for 127.0.0.1 at 2019-03-25 20:11:16 +0100
2030
+ Processing by HomeController#index as HTML
2031
+ Parameters: {"locale"=>"de"}
2032
+ Rendering home/index.html.erb within layouts/application
2033
+ Rendered home/index.html.erb within layouts/application (0.1ms)
2034
+ Cmor::UserArea::User Load (0.4ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
2035
+  (0.1ms) SAVEPOINT active_record_1
2036
+ Cmor::UserArea::User Update (0.2ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "M5pkBT6eGVQmfHS1iC9n"], ["last_request_at", "2019-03-25 19:11:16.570887"], ["updated_at", "2019-03-25 19:11:16.571904"], ["id", 1]]
2037
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2038
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (9.9ms)
2039
+ Completed 200 OK in 19ms (Views: 15.4ms | ActiveRecord: 0.8ms)
2040
+ Started GET "/de/benutzer/profil/edit" for 127.0.0.1 at 2019-03-25 20:11:16 +0100
2041
+ Processing by Cmor::UserArea::CurrentUsersController#edit as HTML
2042
+ Parameters: {"locale"=>"de"}
2043
+ Cmor::UserArea::User Load (0.3ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
2044
+  (0.1ms) SAVEPOINT active_record_1
2045
+ Cmor::UserArea::User Update (0.2ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "ora6FW9t9qQvyd-KHu4Q"], ["last_request_at", "2019-03-25 19:11:16.589991"], ["updated_at", "2019-03-25 19:11:16.591663"], ["id", 1]]
2046
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2047
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application
2048
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form_errors.html.haml (0.1ms)
2049
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form.html.haml (9.2ms)
2050
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application (16.3ms)
2051
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (1.5ms)
2052
+ Completed 200 OK in 34ms (Views: 23.9ms | ActiveRecord: 0.7ms)
2053
+ Cmor::UserArea::User Load (1.3ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
2054
+  (0.4ms) rollback transaction
2055
+  (0.1ms) begin transaction
2056
+  (0.2ms) SAVEPOINT active_record_1
2057
+ Cmor::UserArea::User Exists (0.4ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "9f65494316cc46f055f1e2484746191c7a7dd06f0a9afad14519c0e63d2eb0a42bc33da75590a70b7d88c2dea5a8984bb91202ba27d2d8cf942d42e54a178349"], ["LIMIT", 1]]
2058
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "wIsHvVzgOac9e9PH_SwM"], ["LIMIT", 1]]
2059
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
2060
+ Cmor::UserArea::User Create (0.7ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$ULCFHm6SYU55bLhuAYvYCufaXq01zIpDNgBDk50xC9y9ae/9ptnja"], ["password_salt", "EulesHXAwlC7a7JT8hYN"], ["persistence_token", "9f65494316cc46f055f1e2484746191c7a7dd06f0a9afad14519c0e63d2eb0a42bc33da75590a70b7d88c2dea5a8984bb91202ba27d2d8cf942d42e54a178349"], ["single_access_token", "wIsHvVzgOac9e9PH_SwM"], ["perishable_token", "NxJB6LBMODwozPwREsZN"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 19:11:16.773917"], ["updated_at", "2019-03-25 19:11:16.773917"]]
2061
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2062
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 20:11:16 +0100
2063
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
2064
+ Parameters: {"locale"=>"de"}
2065
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
2066
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (0.2ms)
2067
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (4.5ms)
2068
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (13.1ms)
2069
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (3.2ms)
2070
+ Completed 200 OK in 25ms (Views: 22.7ms | ActiveRecord: 0.0ms)
2071
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 20:11:16 +0100
2072
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
2073
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
2074
+ Cmor::UserArea::User Load (0.9ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
2075
+  (0.2ms) SAVEPOINT active_record_1
2076
+ Cmor::UserArea::User Update (0.5ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "2_bAWBE5J99P6WrKv3yi"], ["login_count", 1], ["last_request_at", "2019-03-25 19:11:16.905097"], ["current_login_at", "2019-03-25 19:11:16.904807"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 19:11:16.907540"], ["id", 1]]
2077
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2078
+ Redirected to http://www.example.com/de
2079
+ Completed 302 Found in 83ms (ActiveRecord: 1.9ms)
2080
+ Started GET "/de" for 127.0.0.1 at 2019-03-25 20:11:16 +0100
2081
+ Processing by HomeController#index as HTML
2082
+ Parameters: {"locale"=>"de"}
2083
+ Rendering home/index.html.erb within layouts/application
2084
+ Rendered home/index.html.erb within layouts/application (0.1ms)
2085
+ Cmor::UserArea::User Load (0.7ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
2086
+  (0.2ms) SAVEPOINT active_record_1
2087
+ Cmor::UserArea::User Update (0.3ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "18603j8NyPyMoldfRe0y"], ["last_request_at", "2019-03-25 19:11:16.933473"], ["updated_at", "2019-03-25 19:11:16.935187"], ["id", 1]]
2088
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2089
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (13.9ms)
2090
+ Completed 200 OK in 21ms (Views: 17.9ms | ActiveRecord: 1.4ms)
2091
+ Started GET "/de/benutzer/profil/edit" for 127.0.0.1 at 2019-03-25 20:11:16 +0100
2092
+ Processing by Cmor::UserArea::CurrentUsersController#edit as HTML
2093
+ Parameters: {"locale"=>"de"}
2094
+ Cmor::UserArea::User Load (1.3ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
2095
+  (0.2ms) SAVEPOINT active_record_1
2096
+ Cmor::UserArea::User Update (0.3ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "LoDYY4j6obDCvNG3wQeb"], ["last_request_at", "2019-03-25 19:11:16.961427"], ["updated_at", "2019-03-25 19:11:16.963536"], ["id", 1]]
2097
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2098
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application
2099
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form_errors.html.haml (0.0ms)
2100
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form.html.haml (7.0ms)
2101
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application (12.3ms)
2102
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (1.7ms)
2103
+ Completed 200 OK in 32ms (Views: 18.7ms | ActiveRecord: 2.0ms)
2104
+  (3.5ms) rollback transaction
2105
+  (0.1ms) begin transaction
2106
+ Started GET "/de/benutzer/profil/edit" for 127.0.0.1 at 2019-03-25 20:11:17 +0100
2107
+ Processing by Cmor::UserArea::CurrentUsersController#edit as HTML
2108
+ Parameters: {"locale"=>"de"}
2109
+ Redirected to http://www.example.com/de/benutzer/session/new
2110
+ Filter chain halted as :authenticate_user! rendered or redirected
2111
+ Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
2112
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 20:11:17 +0100
2113
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
2114
+ Parameters: {"locale"=>"de"}
2115
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
2116
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (0.1ms)
2117
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (3.6ms)
2118
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (8.4ms)
2119
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (1.5ms)
2120
+ Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.0ms)
2121
+  (0.1ms) rollback transaction
2122
+  (0.1ms) begin transaction
2123
+  (0.1ms) rollback transaction
2124
+  (0.1ms) begin transaction
2125
+  (0.1ms) rollback transaction
2126
+  (0.1ms) begin transaction
2127
+  (0.1ms) rollback transaction
2128
+  (0.2ms) begin transaction
2129
+  (0.2ms) SAVEPOINT active_record_1
2130
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "9970f60cf1942fd21ce66d6d13a2cbad31d806c1fa69fa843e4a9d74095bec362327772d7b5e42d58309b8d0fdb56b54f99b7a6a2f13ca45210aaf384d8f7448"], ["LIMIT", 1]]
2131
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "y4SfcUCsIw-V7L4yTn3C"], ["LIMIT", 1]]
2132
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
2133
+ Cmor::UserArea::User Create (0.4ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$YTzCTn8h0QhIAHymtD8FZuT/SUmvsZnhNrfj.UF0UfjViYVC1bmAO"], ["password_salt", "vNSoXRXcwEFUTt-GJyXN"], ["persistence_token", "9970f60cf1942fd21ce66d6d13a2cbad31d806c1fa69fa843e4a9d74095bec362327772d7b5e42d58309b8d0fdb56b54f99b7a6a2f13ca45210aaf384d8f7448"], ["single_access_token", "y4SfcUCsIw-V7L4yTn3C"], ["perishable_token", "t_n27NLFmBM5CZ6HJU_s"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 19:12:33.559691"], ["updated_at", "2019-03-25 19:12:33.559691"]]
2134
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2135
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 20:12:33 +0100
2136
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
2137
+ Parameters: {"locale"=>"de"}
2138
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
2139
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (4.2ms)
2140
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (32.6ms)
2141
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (181.0ms)
2142
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (21.6ms)
2143
+ Completed 200 OK in 750ms (Views: 747.5ms | ActiveRecord: 0.0ms)
2144
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 20:12:34 +0100
2145
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
2146
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
2147
+ Cmor::UserArea::User Load (0.4ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
2148
+  (0.1ms) SAVEPOINT active_record_1
2149
+ Cmor::UserArea::User Update (0.4ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "bNuhVOQqPHs2_p-7U4z7"], ["login_count", 1], ["last_request_at", "2019-03-25 19:12:34.497770"], ["current_login_at", "2019-03-25 19:12:34.496631"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 19:12:34.501062"], ["id", 1]]
2150
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2151
+ Redirected to http://www.example.com/de
2152
+ Completed 302 Found in 77ms (ActiveRecord: 1.0ms)
2153
+ Started GET "/de" for 127.0.0.1 at 2019-03-25 20:12:34 +0100
2154
+ Processing by HomeController#index as HTML
2155
+ Parameters: {"locale"=>"de"}
2156
+ Rendering home/index.html.erb within layouts/application
2157
+ Rendered home/index.html.erb within layouts/application (1.4ms)
2158
+ Cmor::UserArea::User Load (0.4ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
2159
+  (0.1ms) SAVEPOINT active_record_1
2160
+ Cmor::UserArea::User Update (0.2ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "b981uc8UdAUjFiVLSU58"], ["last_request_at", "2019-03-25 19:12:34.553783"], ["updated_at", "2019-03-25 19:12:34.555002"], ["id", 1]]
2161
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2162
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (11.6ms)
2163
+ Completed 200 OK in 28ms (Views: 25.0ms | ActiveRecord: 0.8ms)
2164
+ Started GET "/de/benutzer/profil/edit" for 127.0.0.1 at 2019-03-25 20:12:34 +0100
2165
+ Processing by Cmor::UserArea::CurrentUsersController#edit as HTML
2166
+ Parameters: {"locale"=>"de"}
2167
+ Cmor::UserArea::User Load (0.3ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
2168
+  (0.1ms) SAVEPOINT active_record_1
2169
+ Cmor::UserArea::User Update (0.2ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "wFKVBgbjfOr8LfXVaslj"], ["last_request_at", "2019-03-25 19:12:34.603505"], ["updated_at", "2019-03-25 19:12:34.605539"], ["id", 1]]
2170
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2171
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application
2172
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form_errors.html.haml (7.4ms)
2173
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form.html.haml (14.6ms)
2174
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application (48.0ms)
2175
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (0.8ms)
2176
+ Completed 200 OK in 84ms (Views: 71.5ms | ActiveRecord: 0.8ms)
2177
+  (0.2ms) rollback transaction
2178
+  (0.1ms) begin transaction
2179
+  (0.2ms) SAVEPOINT active_record_1
2180
+ Cmor::UserArea::User Exists (0.6ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "eeed421e32d10f8ae02f8e90b1f76cf6d2c4bdcd93722c6f9633ca2c0860bf772e97cc0fa549e1fae200cd717fc481c9d11f5c0b8d8385e90324b80087498750"], ["LIMIT", 1]]
2181
+ Cmor::UserArea::User Exists (0.1ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "xz2cL5VbapLRk5VU7EZ1"], ["LIMIT", 1]]
2182
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
2183
+ Cmor::UserArea::User Create (0.5ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$tXiv1lk9OEzh1oxsqVuRKuGtO.7z2NtP7HBKS9rfOq4.9jjRIkzOG"], ["password_salt", "S3DdgDNA6gscZaO5aogL"], ["persistence_token", "eeed421e32d10f8ae02f8e90b1f76cf6d2c4bdcd93722c6f9633ca2c0860bf772e97cc0fa549e1fae200cd717fc481c9d11f5c0b8d8385e90324b80087498750"], ["single_access_token", "xz2cL5VbapLRk5VU7EZ1"], ["perishable_token", "7ofYFqAgIfwgDrIDmIYy"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 19:12:34.765595"], ["updated_at", "2019-03-25 19:12:34.765595"]]
2184
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2185
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 20:12:34 +0100
2186
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
2187
+ Parameters: {"locale"=>"de"}
2188
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
2189
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (0.2ms)
2190
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (8.8ms)
2191
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (20.8ms)
2192
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (2.2ms)
2193
+ Completed 200 OK in 34ms (Views: 32.8ms | ActiveRecord: 0.0ms)
2194
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 20:12:34 +0100
2195
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
2196
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
2197
+ Cmor::UserArea::User Load (0.8ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
2198
+  (0.2ms) SAVEPOINT active_record_1
2199
+ Cmor::UserArea::User Update (0.6ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "LaNJWB-TRlWY9QVYDVAX"], ["login_count", 1], ["last_request_at", "2019-03-25 19:12:34.915819"], ["current_login_at", "2019-03-25 19:12:34.915640"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 19:12:34.918604"], ["id", 1]]
2200
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2201
+ Redirected to http://www.example.com/de
2202
+ Completed 302 Found in 77ms (ActiveRecord: 1.8ms)
2203
+ Started GET "/de" for 127.0.0.1 at 2019-03-25 20:12:34 +0100
2204
+ Processing by HomeController#index as HTML
2205
+ Parameters: {"locale"=>"de"}
2206
+ Rendering home/index.html.erb within layouts/application
2207
+ Rendered home/index.html.erb within layouts/application (0.1ms)
2208
+ Cmor::UserArea::User Load (0.4ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
2209
+  (0.1ms) SAVEPOINT active_record_1
2210
+ Cmor::UserArea::User Update (0.1ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "-r2d8D6PX7UI1CU1yAl7"], ["last_request_at", "2019-03-25 19:12:34.942573"], ["updated_at", "2019-03-25 19:12:34.943714"], ["id", 1]]
2211
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2212
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (11.9ms)
2213
+ Completed 200 OK in 18ms (Views: 16.2ms | ActiveRecord: 0.8ms)
2214
+ Started GET "/de/benutzer/profil/edit" for 127.0.0.1 at 2019-03-25 20:12:34 +0100
2215
+ Processing by Cmor::UserArea::CurrentUsersController#edit as HTML
2216
+ Parameters: {"locale"=>"de"}
2217
+ Cmor::UserArea::User Load (0.5ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
2218
+  (0.2ms) SAVEPOINT active_record_1
2219
+ Cmor::UserArea::User Update (0.2ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "ALH8UWY3_RwWag6XRQud"], ["last_request_at", "2019-03-25 19:12:34.959580"], ["updated_at", "2019-03-25 19:12:34.961493"], ["id", 1]]
2220
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2221
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application
2222
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form_errors.html.haml (0.1ms)
2223
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form.html.haml (9.4ms)
2224
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application (14.9ms)
2225
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (1.6ms)
2226
+ Completed 200 OK in 30ms (Views: 20.2ms | ActiveRecord: 1.0ms)
2227
+ Cmor::UserArea::User Load (0.1ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
2228
+ Started PATCH "/de/benutzer/profil" for 127.0.0.1 at 2019-03-25 20:14:33 +0100
2229
+ Processing by Cmor::UserArea::CurrentUsersController#update as HTML
2230
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"new@example.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Update Benutzer", "locale"=>"de"}
2231
+ Cmor::UserArea::User Load (0.6ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
2232
+  (0.2ms) SAVEPOINT active_record_1
2233
+ Cmor::UserArea::User Update (0.2ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "bykaLAfUJOXBoPiGedMG"], ["last_request_at", "2019-03-25 19:14:33.581163"], ["updated_at", "2019-03-25 19:14:33.582766"], ["id", 1]]
2234
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2235
+ [LocationHistoryConcern] Storing last location [http://www.example.com/de/benutzer/profil/edit]
2236
+  (0.0ms) SAVEPOINT active_record_1
2237
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) AND "cmor_user_area_users"."id" != ? LIMIT ? [["email", "new@example.com"], ["id", 1], ["LIMIT", 1]]
2238
+ Cmor::UserArea::User Update (0.2ms) UPDATE "cmor_user_area_users" SET "email" = ?, "perishable_token" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["email", "new@example.com"], ["perishable_token", "WjOHgfy98Mau0qXISBrI"], ["updated_at", "2019-03-25 19:14:33.589211"], ["id", 1]]
2239
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2240
+ Redirected to http://www.example.com/de/benutzer/session/new
2241
+ Completed 302 Found in 17ms (ActiveRecord: 1.7ms)
2242
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 20:14:33 +0100
2243
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
2244
+ Parameters: {"locale"=>"de"}
2245
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
2246
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (0.3ms)
2247
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (8.6ms)
2248
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (19.4ms)
2249
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (2.8ms)
2250
+ Completed 200 OK in 29ms (Views: 28.0ms | ActiveRecord: 0.0ms)
2251
+  (0.2ms) begin transaction
2252
+  (0.2ms) rollback transaction
2253
+  (0.1ms) begin transaction
2254
+  (0.3ms) rollback transaction
2255
+  (0.2ms) begin transaction
2256
+  (0.3ms) rollback transaction
2257
+  (0.1ms) begin transaction
2258
+  (0.2ms) SAVEPOINT active_record_1
2259
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "fd90276909218241e08361e5157e1bb3a7427cd5c56832ee0e1f84c648dd97ff9f6a967ffdfac0eb9cce57c7768e33a56878781bd4a56385c8b216f095205bcf"], ["LIMIT", 1]]
2260
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "SsZRW2B1yqfBVtu5ZSiu"], ["LIMIT", 1]]
2261
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
2262
+ Cmor::UserArea::User Create (0.5ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$T9gBgTZbYvQYZSFWamf4RetvYz19a1aOBSBh4ho4T1G3WAR0CQzzi"], ["password_salt", "hnU90K4E2k3J4lHVHEkS"], ["persistence_token", "fd90276909218241e08361e5157e1bb3a7427cd5c56832ee0e1f84c648dd97ff9f6a967ffdfac0eb9cce57c7768e33a56878781bd4a56385c8b216f095205bcf"], ["single_access_token", "SsZRW2B1yqfBVtu5ZSiu"], ["perishable_token", "aGyHNtMtft8Je3NGBJBc"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 19:14:52.755188"], ["updated_at", "2019-03-25 19:14:52.755188"]]
2263
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2264
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 20:14:52 +0100
2265
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
2266
+ Parameters: {"locale"=>"de"}
2267
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
2268
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (5.2ms)
2269
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (25.3ms)
2270
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (197.7ms)
2271
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (28.3ms)
2272
+ Completed 200 OK in 860ms (Views: 858.0ms | ActiveRecord: 0.0ms)
2273
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 20:14:53 +0100
2274
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
2275
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
2276
+ Cmor::UserArea::User Load (0.5ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
2277
+  (0.2ms) SAVEPOINT active_record_1
2278
+ Cmor::UserArea::User Update (1.1ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "B59HSj3E1Vd1CFdxgUFK"], ["login_count", 1], ["last_request_at", "2019-03-25 19:14:53.855694"], ["current_login_at", "2019-03-25 19:14:53.854530"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 19:14:53.858079"], ["id", 1]]
2279
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2280
+ Redirected to http://www.example.com/de
2281
+ Completed 302 Found in 102ms (ActiveRecord: 2.0ms)
2282
+ Started GET "/de" for 127.0.0.1 at 2019-03-25 20:14:53 +0100
2283
+ Processing by HomeController#index as HTML
2284
+ Parameters: {"locale"=>"de"}
2285
+ Rendering home/index.html.erb within layouts/application
2286
+ Rendered home/index.html.erb within layouts/application (0.7ms)
2287
+ Cmor::UserArea::User Load (0.3ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
2288
+  (0.2ms) SAVEPOINT active_record_1
2289
+ Cmor::UserArea::User Update (0.4ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "E7qurqU7bbNBnAU5si3C"], ["last_request_at", "2019-03-25 19:14:53.909714"], ["updated_at", "2019-03-25 19:14:53.913235"], ["id", 1]]
2290
+  (2.9ms) RELEASE SAVEPOINT active_record_1
2291
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (21.2ms)
2292
+ Completed 200 OK in 39ms (Views: 31.9ms | ActiveRecord: 3.8ms)
2293
+ Started GET "/de/benutzer/profil/edit" for 127.0.0.1 at 2019-03-25 20:14:53 +0100
2294
+ Processing by Cmor::UserArea::CurrentUsersController#edit as HTML
2295
+ Parameters: {"locale"=>"de"}
2296
+ Cmor::UserArea::User Load (0.4ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
2297
+  (0.2ms) SAVEPOINT active_record_1
2298
+ Cmor::UserArea::User Update (0.2ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "iDlp-Fuaw5jeLhEpSlI_"], ["last_request_at", "2019-03-25 19:14:53.995568"], ["updated_at", "2019-03-25 19:14:53.996910"], ["id", 1]]
2299
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2300
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application
2301
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form_errors.html.haml (12.2ms)
2302
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form.html.haml (19.7ms)
2303
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application (64.8ms)
2304
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (2.0ms)
2305
+ Completed 200 OK in 108ms (Views: 93.5ms | ActiveRecord: 0.9ms)
2306
+  (0.3ms) rollback transaction
2307
+  (0.1ms) begin transaction
2308
+  (0.5ms) SAVEPOINT active_record_1
2309
+ Cmor::UserArea::User Exists (0.8ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "33e5e27a7672c227af15c210425c57897c6b6d9b970c5f2d12d22f15056ec979dde792d5e75f0f9496509aa1826710dcdd65bb1a5d5cbb5e407b9109aca6161e"], ["LIMIT", 1]]
2310
+ Cmor::UserArea::User Exists (0.6ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "9gvntp0IltFiMphDKmCt"], ["LIMIT", 1]]
2311
+ Cmor::UserArea::User Exists (0.8ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
2312
+ Cmor::UserArea::User Create (1.9ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$7xsd3GgiSWFlsIZcUY5pAemV6QoIK5MEEmOX.uYL6ZroK0ZKvAgDS"], ["password_salt", "9ENivHde8ZTBphfmVu8e"], ["persistence_token", "33e5e27a7672c227af15c210425c57897c6b6d9b970c5f2d12d22f15056ec979dde792d5e75f0f9496509aa1826710dcdd65bb1a5d5cbb5e407b9109aca6161e"], ["single_access_token", "9gvntp0IltFiMphDKmCt"], ["perishable_token", "9MCyN_biuhP_t7tQ7_SV"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 19:14:54.200557"], ["updated_at", "2019-03-25 19:14:54.200557"]]
2313
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2314
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 20:14:54 +0100
2315
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
2316
+ Parameters: {"locale"=>"de"}
2317
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
2318
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (0.1ms)
2319
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (10.7ms)
2320
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (26.9ms)
2321
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (4.7ms)
2322
+ Completed 200 OK in 43ms (Views: 40.5ms | ActiveRecord: 0.0ms)
2323
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 20:14:54 +0100
2324
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
2325
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
2326
+ Cmor::UserArea::User Load (0.8ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
2327
+  (0.3ms) SAVEPOINT active_record_1
2328
+ Cmor::UserArea::User Update (0.5ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "T7a-ji08kurgKlM6DgqX"], ["login_count", 1], ["last_request_at", "2019-03-25 19:14:54.355757"], ["current_login_at", "2019-03-25 19:14:54.355608"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 19:14:54.357831"], ["id", 1]]
2329
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2330
+ Redirected to http://www.example.com/de
2331
+ Completed 302 Found in 75ms (ActiveRecord: 1.6ms)
2332
+ Started GET "/de" for 127.0.0.1 at 2019-03-25 20:14:54 +0100
2333
+ Processing by HomeController#index as HTML
2334
+ Parameters: {"locale"=>"de"}
2335
+ Rendering home/index.html.erb within layouts/application
2336
+ Rendered home/index.html.erb within layouts/application (0.1ms)
2337
+ Cmor::UserArea::User Load (0.3ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
2338
+  (0.2ms) SAVEPOINT active_record_1
2339
+ Cmor::UserArea::User Update (0.3ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "li37ES5Sr8Yj-VNE9z-H"], ["last_request_at", "2019-03-25 19:14:54.382935"], ["updated_at", "2019-03-25 19:14:54.386101"], ["id", 1]]
2340
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2341
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (14.6ms)
2342
+ Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.9ms)
2343
+ Started GET "/de/benutzer/profil/edit" for 127.0.0.1 at 2019-03-25 20:14:54 +0100
2344
+ Processing by Cmor::UserArea::CurrentUsersController#edit as HTML
2345
+ Parameters: {"locale"=>"de"}
2346
+ Cmor::UserArea::User Load (2.2ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
2347
+  (0.1ms) SAVEPOINT active_record_1
2348
+ Cmor::UserArea::User Update (0.2ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "WmEB5ax0fyV9LZ5Qf8w1"], ["last_request_at", "2019-03-25 19:14:54.404578"], ["updated_at", "2019-03-25 19:14:54.405581"], ["id", 1]]
2349
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2350
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application
2351
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form_errors.html.haml (1.1ms)
2352
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form.html.haml (11.5ms)
2353
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application (16.8ms)
2354
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (2.0ms)
2355
+ Completed 200 OK in 36ms (Views: 25.8ms | ActiveRecord: 2.6ms)
2356
+ Cmor::UserArea::User Load (0.4ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
2357
+ Started PATCH "/de/benutzer/profil" for 127.0.0.1 at 2019-03-25 20:14:54 +0100
2358
+ Processing by Cmor::UserArea::CurrentUsersController#update as HTML
2359
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"new@example.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Update Benutzer", "locale"=>"de"}
2360
+ Cmor::UserArea::User Load (0.4ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
2361
+  (0.9ms) SAVEPOINT active_record_1
2362
+ Cmor::UserArea::User Update (0.2ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "BRa-zWakNU6sK5cax9gF"], ["last_request_at", "2019-03-25 19:14:54.473802"], ["updated_at", "2019-03-25 19:14:54.475866"], ["id", 1]]
2363
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2364
+ [LocationHistoryConcern] Storing last location [http://www.example.com/de/benutzer/profil/edit]
2365
+  (0.1ms) SAVEPOINT active_record_1
2366
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) AND "cmor_user_area_users"."id" != ? LIMIT ? [["email", "new@example.com"], ["id", 1], ["LIMIT", 1]]
2367
+ Cmor::UserArea::User Update (0.3ms) UPDATE "cmor_user_area_users" SET "email" = ?, "perishable_token" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["email", "new@example.com"], ["perishable_token", "x0H7W5OQkL_ADRs0vRw4"], ["updated_at", "2019-03-25 19:14:54.482810"], ["id", 1]]
2368
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2369
+ Redirected to http://www.example.com/de/benutzer/session/new
2370
+ Completed 302 Found in 18ms (ActiveRecord: 2.4ms)
2371
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 20:14:54 +0100
2372
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
2373
+ Parameters: {"locale"=>"de"}
2374
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
2375
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (0.3ms)
2376
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (5.2ms)
2377
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (12.2ms)
2378
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (1.9ms)
2379
+ Completed 200 OK in 20ms (Views: 18.7ms | ActiveRecord: 0.0ms)
2380
+ Cmor::UserArea::User Load (0.2ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
2381
+  (0.3ms) rollback transaction
2382
+  (0.1ms) begin transaction
2383
+  (0.3ms) SAVEPOINT active_record_1
2384
+ Cmor::UserArea::User Exists (0.4ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."persistence_token" = ? LIMIT ? [["persistence_token", "9214174f2b1d048cdec58b0a0a4e2ce5f652b7e6fb236282c921b0048bd18e2aef8d858f8f2ad984f3154ef6d6075de006c5ac87c3a92a4c9498868e1b5a92d7"], ["LIMIT", 1]]
2385
+ Cmor::UserArea::User Exists (0.3ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."single_access_token" = ? LIMIT ? [["single_access_token", "sN_rmrG4N2jisC8fCdjN"], ["LIMIT", 1]]
2386
+ Cmor::UserArea::User Exists (0.5ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) LIMIT ? [["email", "user@example.com"], ["LIMIT", 1]]
2387
+ Cmor::UserArea::User Create (1.0ms) INSERT INTO "cmor_user_area_users" ("email", "crypted_password", "password_salt", "persistence_token", "single_access_token", "perishable_token", "active", "approved", "confirmed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "user@example.com"], ["crypted_password", "$2a$10$QfBXoBKbXU7PlMZ0s24qn.OGHhlMvzBG2cP04bkMa7ltY/eqJarSS"], ["password_salt", "wQELhc6X3Ums_qDe50Gy"], ["persistence_token", "9214174f2b1d048cdec58b0a0a4e2ce5f652b7e6fb236282c921b0048bd18e2aef8d858f8f2ad984f3154ef6d6075de006c5ac87c3a92a4c9498868e1b5a92d7"], ["single_access_token", "sN_rmrG4N2jisC8fCdjN"], ["perishable_token", "dzZBxDlHA4WjIf_iXQGj"], ["active", 1], ["approved", 1], ["confirmed", 1], ["created_at", "2019-03-25 19:14:54.637973"], ["updated_at", "2019-03-25 19:14:54.637973"]]
2388
+  (0.3ms) RELEASE SAVEPOINT active_record_1
2389
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 20:14:54 +0100
2390
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
2391
+ Parameters: {"locale"=>"de"}
2392
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
2393
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (0.2ms)
2394
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (5.9ms)
2395
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (16.0ms)
2396
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (3.2ms)
2397
+ Completed 200 OK in 29ms (Views: 26.7ms | ActiveRecord: 0.0ms)
2398
+ Started POST "/de/benutzer/session" for 127.0.0.1 at 2019-03-25 20:14:54 +0100
2399
+ Processing by Cmor::UserArea::UserSessionsController#create as HTML
2400
+ Parameters: {"utf8"=>"✓", "user_session"=>{"email"=>"user@example.com", "password"=>"[FILTERED]"}, "commit"=>"Einloggen", "locale"=>"de"}
2401
+ Cmor::UserArea::User Load (0.6ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER('user@example.com') ORDER BY "cmor_user_area_users"."id" ASC LIMIT ? [["LIMIT", 1]]
2402
+  (0.3ms) SAVEPOINT active_record_1
2403
+ Cmor::UserArea::User Update (0.5ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "514QQnA_aE-x_d78rtif"], ["login_count", 1], ["last_request_at", "2019-03-25 19:14:54.782304"], ["current_login_at", "2019-03-25 19:14:54.782184"], ["current_login_ip", "127.0.0.1"], ["updated_at", "2019-03-25 19:14:54.787139"], ["id", 1]]
2404
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2405
+ Redirected to http://www.example.com/de
2406
+ Completed 302 Found in 83ms (ActiveRecord: 1.7ms)
2407
+ Started GET "/de" for 127.0.0.1 at 2019-03-25 20:14:54 +0100
2408
+ Processing by HomeController#index as HTML
2409
+ Parameters: {"locale"=>"de"}
2410
+ Rendering home/index.html.erb within layouts/application
2411
+ Rendered home/index.html.erb within layouts/application (0.1ms)
2412
+ Cmor::UserArea::User Load (0.7ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
2413
+  (0.1ms) SAVEPOINT active_record_1
2414
+ Cmor::UserArea::User Update (0.2ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "zf743xTiPl7a6woj-jaE"], ["last_request_at", "2019-03-25 19:14:54.808905"], ["updated_at", "2019-03-25 19:14:54.810417"], ["id", 1]]
2415
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2416
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (11.8ms)
2417
+ Completed 200 OK in 16ms (Views: 14.4ms | ActiveRecord: 1.2ms)
2418
+ Started GET "/de/benutzer/profil/edit" for 127.0.0.1 at 2019-03-25 20:14:54 +0100
2419
+ Processing by Cmor::UserArea::CurrentUsersController#edit as HTML
2420
+ Parameters: {"locale"=>"de"}
2421
+ Cmor::UserArea::User Load (0.5ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
2422
+  (0.1ms) SAVEPOINT active_record_1
2423
+ Cmor::UserArea::User Update (0.3ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "bhyMyTHe9omI3XZD3D8o"], ["last_request_at", "2019-03-25 19:14:54.823889"], ["updated_at", "2019-03-25 19:14:54.825348"], ["id", 1]]
2424
+  (0.3ms) RELEASE SAVEPOINT active_record_1
2425
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application
2426
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form_errors.html.haml (0.1ms)
2427
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/_form.html.haml (7.8ms)
2428
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/current_users/edit.html.haml within layouts/application (13.2ms)
2429
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (0.7ms)
2430
+ Completed 200 OK in 28ms (Views: 17.2ms | ActiveRecord: 1.2ms)
2431
+ Started PATCH "/de/benutzer/profil" for 127.0.0.1 at 2019-03-25 20:14:54 +0100
2432
+ Processing by Cmor::UserArea::CurrentUsersController#update as HTML
2433
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"new@example.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Update Benutzer", "locale"=>"de"}
2434
+ Cmor::UserArea::User Load (0.5ms) SELECT "cmor_user_area_users".* FROM "cmor_user_area_users" WHERE "cmor_user_area_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
2435
+  (0.2ms) SAVEPOINT active_record_1
2436
+ Cmor::UserArea::User Update (0.2ms) UPDATE "cmor_user_area_users" SET "perishable_token" = ?, "last_request_at" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["perishable_token", "g5Ub-KoWqU4uLroIH89t"], ["last_request_at", "2019-03-25 19:14:54.864504"], ["updated_at", "2019-03-25 19:14:54.866067"], ["id", 1]]
2437
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2438
+ [LocationHistoryConcern] Storing last location [http://www.example.com/de/benutzer/profil/edit]
2439
+  (0.1ms) SAVEPOINT active_record_1
2440
+ Cmor::UserArea::User Exists (0.2ms) SELECT 1 AS one FROM "cmor_user_area_users" WHERE LOWER("cmor_user_area_users"."email") = LOWER(?) AND "cmor_user_area_users"."id" != ? LIMIT ? [["email", "new@example.com"], ["id", 1], ["LIMIT", 1]]
2441
+ Cmor::UserArea::User Update (0.2ms) UPDATE "cmor_user_area_users" SET "email" = ?, "perishable_token" = ?, "updated_at" = ? WHERE "cmor_user_area_users"."id" = ? [["email", "new@example.com"], ["perishable_token", "G7N96WlDotJttrDbEu40"], ["updated_at", "2019-03-25 19:14:54.873584"], ["id", 1]]
2442
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2443
+ Redirected to http://www.example.com/de/benutzer/session/new
2444
+ Completed 302 Found in 17ms (ActiveRecord: 1.6ms)
2445
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 20:14:54 +0100
2446
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
2447
+ Parameters: {"locale"=>"de"}
2448
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
2449
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (0.2ms)
2450
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (4.6ms)
2451
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (11.8ms)
2452
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (1.8ms)
2453
+ Completed 200 OK in 20ms (Views: 18.0ms | ActiveRecord: 0.0ms)
2454
+  (0.3ms) rollback transaction
2455
+  (0.1ms) begin transaction
2456
+ Started GET "/de/benutzer/profil/edit" for 127.0.0.1 at 2019-03-25 20:14:54 +0100
2457
+ Processing by Cmor::UserArea::CurrentUsersController#edit as HTML
2458
+ Parameters: {"locale"=>"de"}
2459
+ Redirected to http://www.example.com/de/benutzer/session/new
2460
+ Filter chain halted as :authenticate_user! rendered or redirected
2461
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
2462
+ Started GET "/de/benutzer/session/new" for 127.0.0.1 at 2019-03-25 20:14:54 +0100
2463
+ Processing by Cmor::UserArea::UserSessionsController#new as HTML
2464
+ Parameters: {"locale"=>"de"}
2465
+ Rendering /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application
2466
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form_errors.html.haml (0.2ms)
2467
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/_form.html.haml (3.5ms)
2468
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/sessions/base/new.html.haml within layouts/application (10.0ms)
2469
+ Rendered /home/vagrant/rails/ecm/cmor/cmor_user_area/app/views/cmor/user_area/navigation_view_helper/bootstrap_4/_render.html.haml (1.6ms)
2470
+ Completed 200 OK in 17ms (Views: 15.4ms | ActiveRecord: 0.0ms)
2471
+  (0.1ms) rollback transaction