Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
cleaning-portalmec
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Richard Fernando Heise Ferreira
cleaning-portalmec
Commits
ba5307e3
Commit
ba5307e3
authored
9 years ago
by
Mauricio Giacomini Girardello
Browse files
Options
Downloads
Patches
Plain Diff
raising exceptions when check_references of some user
parent
e728148d
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
app/repositories/user_repository_proxy.rb
+8
-1
8 additions, 1 deletion
app/repositories/user_repository_proxy.rb
with
8 additions
and
1 deletion
app/repositories/user_repository_proxy.rb
+
8
−
1
View file @
ba5307e3
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment