Sha256: 19fd3487df1f164dfbd64cb5368add64c51f8d909ae060debab7bcf8941ce27f
Contents?: true
Size: 1.06 KB
Versions: 5
Compression:
Stored size: 1.06 KB
Contents
# frozen_string_literal: true # == Schema Information # # Endpoint: # - /v1/app/:app_id/shared_entities # # id :integer not null, primary key # nid :string # name :string # created_at :datetime not null # updated_at :datetime not null module MnoEnterprise::Concerns::Models::SharedEntity extend ActiveSupport::Concern #================================================================== # Included methods #================================================================== included do # == Relationships ============================================== belongs_to :app end #================================================================== # Class methods #================================================================== module ClassMethods # def some_class_method # 'some text' # end end #================================================================== # Instance methods #================================================================== end
Version data entries
5 entries across 5 versions & 1 rubygems