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

Devise ORM for Neo4j

Results 9 devise-activegraph issues
Sort by recently updated
recently updated
newest added

``` == 20230314133654 CreateUser: running... ======================================= CYPHER CREATE CONSTRAINT FOR (n:`User`) REQUIRE n.`uuid` IS UNIQUE == 20230314133654 CreateUser: migrated (0.1260s) =============================== == 20230314133654 DeviseCreateUserConstraintsAndIndexes: running... ============ rake aborted! Neo4j::Driver::Exceptions::ClientException: Node(1)...

``` DEPRECATION WARNING: ActiveSupport::PerThreadRegistry is deprecated and will be removed in Rails 7.1. Use `Module#thread_mattr_accessor` instead. (called from at /Users/user/Organisations/playtimestudios/contacts/server/config/application.rb:17) WARNING: Zeitwerk defines the constant Devise after the directory /Users/user/.asdf/installs/ruby/3.2.1/lib/ruby/gems/3.2.0/gems/devise-activegraph-3.0.0/lib/devise...

New example Rails 5.1.4 project, gems: ``` # Secure ALL the things! gem 'devise' gem 'neo4j', '~> 8.2.1' gem 'devise-neo4j' ``` `rails g neo4j:devise User` generates: 20170910050708_create_user 20170910050708_devise_create_user_constraints_and_indexes Running `rails...

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...

### NoMethodError in Devise::SessionsController#create Extracted source (around line #62): > 60 list = response.body || [] > 61 list.map do |item| > 62 {type: CONSTRAINT_TYPES[item[:type]], > 63 label: item[:label].to_sym, >...

Hi, Following the instructions gave me the error "No session, please create a session first with Neo4j::Session.open(:server_db) or :embedded_db)" upon account creation. Had to add: require 'neo4j/railtie' to /config/application.rb you...

I'm playing around with the devise module `:confirmable`, and noticed that the `## Confirmable` block that is commented out in the generated user model is missing the `property :unconfirmed_email, type:...

When I try to register a user which already exists, I get the following error: Email translation missing: en.neo4j.errors.models.user.attributes.email.taken I am using devise-neo4j (2.0.0) bcrypt-ruby (~> 3.0) devise (~> 3.0)...

I have never before submitted an issue on GitHub or anywhere else, so please let me know if I'm doing something wrong. I am now working on integrating devise-neo4j with...