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
5257eec4
Commit
5257eec4
authored
Sep 04, 2014
by
Alexey Pokhozhaev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Always return self when restore
parent
b1a4a6f2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
5 deletions
+10
-5
lib/paranoia.rb
+3
-5
test/paranoia_test.rb
+7
-0
No files found.
lib/paranoia.rb
View file @
5257eec4
...
...
@@ -34,11 +34,7 @@ module Paranoia
alias
:deleted
:only_deleted
def
restore
(
id
,
opts
=
{})
if
id
.
is_a?
(
Array
)
id
.
map
{
|
one_id
|
restore
(
one_id
,
opts
)
}
else
only_deleted
.
find
(
id
).
restore!
(
opts
)
end
Array
(
id
).
flatten
.
map
{
|
one_id
|
only_deleted
.
find
(
one_id
).
restore!
(
opts
)
}
end
end
...
...
@@ -97,6 +93,8 @@ module Paranoia
restore_associated_records
if
opts
[
:recursive
]
end
end
self
end
alias
:restore
:restore!
...
...
test/paranoia_test.rb
View file @
5257eec4
...
...
@@ -290,6 +290,13 @@ class ParanoiaTest < test_framework
assert_equal
false
,
model
.
destroyed?
end
def
test_restore_on_object_return_self
model
=
ParanoidModel
.
create
model
.
destroy
assert_equal
model
.
class
,
model
.
restore
.
class
end
# Regression test for #92
def
test_destroy_twice
model
=
ParanoidModel
.
new
...
...
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