Skip to content

Instantly share code, notes, and snippets.

@benhickson
Created April 20, 2020 16:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benhickson/d616f8a7aaa7b6bd06c4aa09244f3c3a to your computer and use it in GitHub Desktop.
Save benhickson/d616f8a7aaa7b6bd06c4aa09244f3c3a to your computer and use it in GitHub Desktop.
class User < ApplicationRecord
def anon_display_name
if self.anonymous_user
self.anonymous_user.display_name
else
nil
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment