Skip to content

Instantly share code, notes, and snippets.

@ritikesh
Last active October 13, 2020 20:36
Show Gist options
  • Save ritikesh/fc59fe13581a32c2c4bc93f693905b00 to your computer and use it in GitHub Desktop.
Save ritikesh/fc59fe13581a32c2c4bc93f693905b00 to your computer and use it in GitHub Desktop.
Creator Pattern
module Creator
extend ActiveSupport::Concern
included do
before_validation -> {
self.creator_id = User.current.id if User.current
}, on: :create
belongs_to :creator, class_name: 'User', foreign_key: :creator_id
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment