Module: HasUuid
- Extended by:
- ActiveSupport::Concern
- Defined in:
- app/models/concerns/has_uuid.rb
Defined Under Namespace
Modules: ClassMethods
Instance Method Summary collapse
-
#short_uuid ⇒ Object
define object methods.
Instance Method Details
#short_uuid ⇒ Object
define object methods.
16 17 18 19 20 |
# File 'app/models/concerns/has_uuid.rb', line 16 def short_uuid self.uuid.first(7) rescue "nil" end |