Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
paranoia
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ikcrm_common
paranoia
Commits
b63f446d
Commit
b63f446d
authored
8 years ago
by
Ben A. Morgan
Committed by
GitHub
8 years ago
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #384 from jhawthorn/rails_5_1_0_beta1
Fix UniquenessParanoiaValidator on rails 5.1.0.beta1
parents
103c33b0
4c4519c7
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lib/paranoia.rb
+2
-2
No files found.
lib/paranoia.rb
View file @
b63f446d
...
@@ -284,8 +284,8 @@ require 'paranoia/rspec' if defined? RSpec
...
@@ -284,8 +284,8 @@ require 'paranoia/rspec' if defined? RSpec
module
ActiveRecord
module
ActiveRecord
module
Validations
module
Validations
module
UniquenessParanoiaValidator
module
UniquenessParanoiaValidator
def
build_relation
(
klass
,
table
,
attribute
,
value
)
def
build_relation
(
klass
,
*
args
)
relation
=
super
(
klass
,
table
,
attribute
,
value
)
relation
=
super
return
relation
unless
klass
.
respond_to?
(
:paranoia_column
)
return
relation
unless
klass
.
respond_to?
(
:paranoia_column
)
arel_paranoia_scope
=
klass
.
arel_table
[
klass
.
paranoia_column
].
eq
(
klass
.
paranoia_sentinel_value
)
arel_paranoia_scope
=
klass
.
arel_table
[
klass
.
paranoia_column
].
eq
(
klass
.
paranoia_sentinel_value
)
if
ActiveRecord
::
VERSION
::
STRING
>=
"5.0"
if
ActiveRecord
::
VERSION
::
STRING
>=
"5.0"
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment