Skip to content
Snippets Groups Projects
Commit ba5307e3 authored by Mauricio Giacomini Girardello's avatar Mauricio Giacomini Girardello
Browse files

raising exceptions when check_references of some user

parent e728148d
No related branches found
No related tags found
No related merge requests found
......@@ -40,7 +40,6 @@ class UserRepositoryProxy
User.respond_to?(method_name) || super
end
private
attr_reader :orientdb_user_repository
......@@ -52,6 +51,14 @@ class UserRepositoryProxy
end
def check_references(user)
if !user.persisted?
raise_not_persisted_error
end
if user.rid.nil?
raise 'OrientDb reference is null'
end
rid = get_graph_id user
(rid == user.rid)
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment