diff --git a/app/models/content_types/character.rb b/app/models/content_types/character.rb index b229323f..675ebe14 100644 --- a/app/models/content_types/character.rb +++ b/app/models/content_types/character.rb @@ -64,8 +64,4 @@ class Character < ActiveRecord::Base def self.icon 'group' end - - def deleted_at - nil #hack - end end diff --git a/app/models/content_types/creature.rb b/app/models/content_types/creature.rb index 2baabee2..181f0643 100644 --- a/app/models/content_types/creature.rb +++ b/app/models/content_types/creature.rb @@ -46,8 +46,4 @@ class Creature < ActiveRecord::Base def self.content_name 'creature' end - - def deleted_at - nil #hack - end end diff --git a/app/models/content_types/flora.rb b/app/models/content_types/flora.rb index 4513e721..04cfc626 100644 --- a/app/models/content_types/flora.rb +++ b/app/models/content_types/flora.rb @@ -35,8 +35,4 @@ class Flora < ActiveRecord::Base def self.icon 'local_florist' end - - def deleted_at - nil #hack - end end diff --git a/app/models/content_types/group.rb b/app/models/content_types/group.rb index 34be1c7a..955aa19f 100644 --- a/app/models/content_types/group.rb +++ b/app/models/content_types/group.rb @@ -53,8 +53,4 @@ class Group < ActiveRecord::Base def self.content_name 'group' end - - def deleted_at - nil #hack - end end diff --git a/app/models/content_types/item.rb b/app/models/content_types/item.rb index 06d9725b..aa3240eb 100644 --- a/app/models/content_types/item.rb +++ b/app/models/content_types/item.rb @@ -42,8 +42,4 @@ class Item < ActiveRecord::Base def self.content_name 'item' end - - def deleted_at - nil #hack - end end diff --git a/app/models/content_types/landmark.rb b/app/models/content_types/landmark.rb index 10abf44b..54a1931a 100644 --- a/app/models/content_types/landmark.rb +++ b/app/models/content_types/landmark.rb @@ -35,8 +35,4 @@ class Landmark < ActiveRecord::Base def self.icon 'location_on' end - - # def deleted_at - # nil #hack - # end end diff --git a/app/models/content_types/language.rb b/app/models/content_types/language.rb index 13eefc2e..c253c119 100644 --- a/app/models/content_types/language.rb +++ b/app/models/content_types/language.rb @@ -35,8 +35,4 @@ class Language < ActiveRecord::Base def self.content_name 'language' end - - def deleted_at - nil #hack - end end diff --git a/app/models/content_types/location.rb b/app/models/content_types/location.rb index 344c35a6..f5b2f2b5 100644 --- a/app/models/content_types/location.rb +++ b/app/models/content_types/location.rb @@ -50,8 +50,4 @@ class Location < ActiveRecord::Base def self.content_name 'location' end - - def deleted_at - nil #hack - end end diff --git a/app/models/content_types/magic.rb b/app/models/content_types/magic.rb index 7afc8978..4f864dde 100644 --- a/app/models/content_types/magic.rb +++ b/app/models/content_types/magic.rb @@ -33,8 +33,4 @@ class Magic < ActiveRecord::Base def self.content_name 'magic' end - - def deleted_at - nil #hack - end end diff --git a/app/models/content_types/race.rb b/app/models/content_types/race.rb index 28760cd1..f30845d8 100644 --- a/app/models/content_types/race.rb +++ b/app/models/content_types/race.rb @@ -39,8 +39,4 @@ class Race < ActiveRecord::Base def self.content_name 'race' end - - def deleted_at - nil #hack - end end diff --git a/app/models/content_types/religion.rb b/app/models/content_types/religion.rb index 43048876..bb2b9fe2 100644 --- a/app/models/content_types/religion.rb +++ b/app/models/content_types/religion.rb @@ -43,8 +43,4 @@ class Religion < ActiveRecord::Base def self.content_name 'religion' end - - def deleted_at - nil #hack - end end diff --git a/app/models/content_types/scene.rb b/app/models/content_types/scene.rb index 9c020cab..1df6411d 100644 --- a/app/models/content_types/scene.rb +++ b/app/models/content_types/scene.rb @@ -39,8 +39,4 @@ class Scene < ActiveRecord::Base def self.content_name 'scene' end - - def deleted_at - nil #hack - end end diff --git a/app/models/content_types/town.rb b/app/models/content_types/town.rb index e12cc449..647e96a9 100644 --- a/app/models/content_types/town.rb +++ b/app/models/content_types/town.rb @@ -38,8 +38,4 @@ class Town < ActiveRecord::Base def self.icon 'location_city' end - - # def deleted_at - # nil #hack - # end end diff --git a/app/models/content_types/universe.rb b/app/models/content_types/universe.rb index 32945ee9..42bb5cdb 100644 --- a/app/models/content_types/universe.rb +++ b/app/models/content_types/universe.rb @@ -68,8 +68,4 @@ class Universe < ActiveRecord::Base def self.content_name 'universe' end - - def deleted_at - nil #hack - end end diff --git a/app/models/user.rb b/app/models/user.rb index e61ba88d..c6e8b5f3 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -191,8 +191,4 @@ class User < ActiveRecord::Base :email ] end - - def deleted_at - nil #hack - end end