mongodb/mongoid

View on GitHub
lib/mongoid/timestamps/short.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true
# rubocop:todo all

module Mongoid
  module Timestamps
    module Short
      extend ActiveSupport::Concern
      include Created::Short
      include Updated::Short
    end
  end
end