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
9fdb255e
Commit
9fdb255e
authored
Dec 10, 2010
by
Scott Gonyea
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Big change = only update deleted_at if not yet set
parent
e15f7a7e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
10 deletions
+7
-10
lib/paranoia.rb
+7
-10
No files found.
lib/paranoia.rb
View file @
9fdb255e
module
Paranoia
def
deleted?
!!
self
[
"deleted_at"
]
end
def
destroy
self
[
"deleted_at"
]
=
Time
.
now
self
[
:deleted_at
]
||
=
Time
.
now
self
.
save
_run_destroy_callbacks
end
alias_method
:delete
,
:destroy
alias
:delete
:destroy
def
destroyed?
!
self
[
:deleted_at
].
nil?
end
alias
:deleted?
:destroyed?
end
class
ActiveRecord
::
Base
...
...
@@ -19,4 +18,3 @@ class ActiveRecord::Base
default_scope
:conditions
=>
{
:deleted_at
=>
nil
}
end
end
\ No newline at end of file
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