diff --git a/app/models/person.rb b/app/models/person.rb index 0e943fa..0a99868 100644 --- a/app/models/person.rb +++ b/app/models/person.rb @@ -52,4 +52,8 @@ class Person < Profile end end end + + def person? + true + end end diff --git a/app/models/profile.rb b/app/models/profile.rb index 5f26178..1e8a99c 100644 --- a/app/models/profile.rb +++ b/app/models/profile.rb @@ -142,4 +142,8 @@ class Profile < ActiveRecord::Base def superior_instance environment end + + def person? + false + end end -- libgit2 0.21.2