devise-activegraph icon indicating copy to clipboard operation
devise-activegraph copied to clipboard

confirmation sent with sign in and sign out

Open ahmetkizilay opened this issue 8 years ago • 4 comments

I updated device-neo4j to 2.0.2 along with the latest versions of neo4j and neo4j-core in order to migrate to neo4j 3.0.1.

After the update, I started getting confirmation emails for every sign in and sign out.

Note that I had to add property :remember_token to get the program work and I can check on the rails console that my user is confirmed.

User.find('user_id).confirmed? # returns true

What do you think is causing this behavior?

Thanks in advance

devise (4.1.1)
      bcrypt (~> 3.0)
      orm_adapter (~> 0.1)
      railties (>= 4.1.0, < 5.1)
      responders
      warden (~> 1.2.3)
    devise-neo4j (2.0.2)
      bcrypt (>= 3.0)
      devise (>= 3.0)
      neo4j (>= 3.0.0)
      orm_adapter (~> 0.5.0)
      railties (>= 3.1)
      warden (>= 1.2.1)
neo4j (7.0.9)
      activemodel (~> 4)
      activesupport (~> 4)
      neo4j-core (>= 6.0.0)
      orm_adapter (~> 0.5.0)
    neo4j-core (6.1.4)
      activesupport
      faraday (~> 0.9.0)
      faraday_middleware (~> 0.10.0)
      faraday_middleware-multi_json
      httparty
      httpclient
      json
      multi_json
      neo4j-rake_tasks (>= 0.3.0)
      net-http-persistent

ahmetkizilay avatar May 31 '16 14:05 ahmetkizilay